Skip to content

Commit

Permalink
Delete star string format hotfix for python 2.7 compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
Thingable committed May 17, 2018
1 parent 57f6968 commit b2c25e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trello/trelloclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,5 +388,5 @@ def delete_star(self, star):
:param position: Optional position of the board star
:rtype: Star
"""
self.fetch_json(f'members/me/boardStars/{star.id}', http_method='DELETE')
self.fetch_json('members/me/boardStars/{}'.format(star.id), http_method='DELETE')
return star

0 comments on commit b2c25e6

Please sign in to comment.