Skip to content

Commit

Permalink
Saves a new Trello board. Avoid creating default lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego J. Romero López committed Oct 9, 2016
1 parent 2ec62cd commit b6f9afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trello/board.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def save(self):
json_obj = self.client.fetch_json(
'/boards/',
http_method='POST',
post_args={'name': self.name, "desc": self.description}, )
post_args={'name': self.name, "desc": self.description, "defaultLists": False}, )
# Set initial data from Trello
self.from_json(json_obj=json_obj)
self.id = json_obj["id"]
Expand Down

0 comments on commit b6f9afa

Please sign in to comment.