Skip to content

Commit

Permalink
Merge pull request #68 from JulienPalard/patch-1
Browse files Browse the repository at this point in the history
FIX: Inverted arguments
  • Loading branch information
sarumont committed Oct 14, 2014
2 parents 32ec635 + 6d91f93 commit 102669a
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 @@ -317,7 +317,7 @@ def get_cards(self, filters=None):
query_params=filters
)

return list([Card.from_json(json, self) for json in json_obj])
return list([Card.from_json(self, json) for json in json_obj])

def all_members(self):
"""Returns all members on this board"""
Expand Down

0 comments on commit 102669a

Please sign in to comment.