This commit is contained in:
deadsmond 2019-10-28 20:39:28 +01:00
parent c744d948fb
commit 8f1a9c204d

View File

@ -8,7 +8,7 @@ def is_number(test):
result = re.match(pattern, test)
if result:
test = test.split(' ')
if len(test[0]) < 2 or len(test[1]) < 2:
if len(test[0]) < 2 or len(test[1]) < 2:
return "<NONE>"
else:
return test[1]