fix syntactical issue in get_table_no
This commit is contained in:
parent
ca967992b5
commit
df1cd4a15d
|
@ -186,7 +186,8 @@ class Table_Window(object):
|
||||||
|
|
||||||
mo = re.search(self.tableno_re, new_title)
|
mo = re.search(self.tableno_re, new_title)
|
||||||
if mo is not None:
|
if mo is not None:
|
||||||
return mo[1]
|
print "get_table_no: mo=",mo.groups()
|
||||||
|
return mo.group(1)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
####################################################################
|
####################################################################
|
||||||
|
|
Loading…
Reference in New Issue
Block a user