Skip to content

Commit

Permalink
Fix DatetimeConverter to deal with input that cannot be handled by to…
Browse files Browse the repository at this point in the history
…_datetime
  • Loading branch information
jorisvandenbossche committed Jul 21, 2016
1 parent bb6b5e5 commit 095a2ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tseries/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def try_parse(values):
else:
values = [_dt_to_float_ordinal(x) for x in values]
except Exception:
pass
values = [_dt_to_float_ordinal(x) for x in values]

return values

Expand Down

0 comments on commit 095a2ef

Please sign in to comment.