Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
remove prints
  • Loading branch information
fp12 committed Jun 7, 2017
1 parent 1367b48 commit bcef05f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion challonge/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flake8: noqa

__version__ = "1.6.0"
__version__ = "1.6.1"
__author__ = "fp12"

AUTO_GET_PARTICIPANTS = True
Expand Down
1 change: 0 additions & 1 deletion challonge/tournament.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def __init__(self, connection, json_def, **kwargs):
def _find_participant(self, p_id):
if self.participants is not None:
for p in self.participants:
print(p.id, p.group_player_ids)
if int(p_id) == p.id or int(p_id) in p.group_player_ids:
return p
return None
Expand Down

0 comments on commit bcef05f

Please sign in to comment.