Fix(parsing): Remove spaces in string before parsing

This commit is contained in:
Bertrand Benjamin 2018-10-05 10:31:51 +02:00
parent 9e0a703e98
commit 2489eccb74
1 changed files with 2 additions and 2 deletions

View File

@ -689,7 +689,7 @@ def str2(sink, convert_to_mo=True):
else:
str2_corout = lookforNumbers(operator_corout(missing_times(pparser(sink))))
for i in expression:
for i in expression.replace(" ",""):
str2_corout.send(i)
a = str2_corout.throw(STOOOP)