diff --git a/treys/evaluator.py b/treys/evaluator.py index f5354ed..4ff34c3 100644 --- a/treys/evaluator.py +++ b/treys/evaluator.py @@ -178,4 +178,4 @@ def hand_summary(self, board, hands): if len(winners) == 1: print("Player {} is the winner with a {}\n".format(winners[0] + 1, hand_result)) else: - print("Players {} tied for the win with a {}\n".format(winners,hand_result)) + print("Players {} tied for the win with a {}\n".format([x + 1 for x in winners],hand_result))