Skip to content

Commit

Permalink
Use hour, min, sec to help deal with TZ issues
Browse files Browse the repository at this point in the history
  • Loading branch information
portante committed Jul 14, 2015
1 parent 84a8570 commit 66fbb59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trello/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ def set_due(self, due):
:title: due a datetime object
"""
datestr = due.strftime('%Y-%m-%d')
datestr = due.strftime('%Y-%m-%dT%H:%M:%S')
self._set_remote_attribute('due', datestr)
self.due = datestr

Expand Down

0 comments on commit 66fbb59

Please sign in to comment.