Skip to content

Commit 7d1c855

Browse files
committed
Fixed isodate formatting.
This is why tests are good ;)
1 parent 2270825 commit 7d1c855

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

github2/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def datetime_to_isodate(datetime_):
8888
8989
:param str datetime_: datetime object to convert
9090
"""
91-
return "%s%z" % datetime_.isoformat()
91+
return "%sZ" % datetime_.isoformat()
9292

9393

9494
class GithubCommand(object):

0 commit comments

Comments
 (0)