Skip to content

Commit

Permalink
Merge pull request #217 from themotion/master
Browse files Browse the repository at this point in the history
Organization timezone set to UTC (to avoud an issue)
  • Loading branch information
sarumont authored Aug 21, 2017
2 parents a70c863 + 3d373fe commit 88a4eca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test41_add_card_desc(self):
self.assertIsNotNone(card.list_id)
self.assertIsNotNone(card.comments)
self.assertIsNotNone(card.checklists)
self.assertIsInstance(card.create_date, datetime)
self.assertIsInstance(card.created_date, datetime)

def test42_add_card_with_comments_fetch(self):
name = "Card with comments"
Expand Down
2 changes: 1 addition & 1 deletion trello/organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class Organization(TrelloBase):

TIMEZONE = None
TIMEZONE = 'UTC'

"""
Class representing an organization
Expand Down

0 comments on commit 88a4eca

Please sign in to comment.