Skip to content

Commit 4448022

Browse files
author
Kenneth Reitz
committed
debugging
1 parent ae2db0a commit 4448022

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

heroku/helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def to_python(obj,
5252
in_date = in_dict.get(in_key)
5353
try:
5454
out_date = parse_datetime(in_date)
55-
except TypeError:
55+
except TypeError, e:
56+
raise e
5657
out_date = None
5758

5859
d[in_key] = out_date

0 commit comments

Comments
 (0)