add missing parenthesis

This commit is contained in:
Frédéric Péters 2012-06-05 12:36:47 +02:00
parent 20baf16413
commit 77dc6a2fc8
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ def get_no_as_int(i):
if i:
if ' ' in i:
try:
return int(re.match('\d+', i).group()
return int(re.match('\d+', i).group())
except ValueError:
return 99999
try: