Merge pull request #34356 from rallytime/python3-runner-tests

Fix invalid syntax error in system.py module exception handling
This commit is contained in:
Mike Place 2016-06-29 07:49:18 -07:00 committed by GitHub
commit 5d4759acec

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