Fix invalid syntax error in system.py module exception handling

Found when running runner tests for Python 3
This commit is contained in:
rallytime 2016-06-28 17:22:10 -06:00
parent 4feea285d4
commit 4c481054eb

View File

@ -193,7 +193,7 @@ def _try_parse_datetime(time_str, fmts):
try:
result = datetime.strptime(time_str, fmt)
break
except ValueError, e:
except ValueError:
pass
return result