fix syntactical issue in get_table_no

This commit is contained in:
Eric Blade 2010-09-27 07:29:34 -04:00
parent ca967992b5
commit df1cd4a15d

View File

@ -186,7 +186,8 @@ class Table_Window(object):
mo = re.search(self.tableno_re, new_title)
if mo is not None:
return mo[1]
print "get_table_no: mo=",mo.groups()
return mo.group(1)
return False
####################################################################