Skip to content

Commit c3da8d9

Browse files
committed
fix: add missing placeholder in format string
1 parent 2b01687 commit c3da8d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blackjack/game/blackjackgame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def _run_handlers(self, handlers):
6161
try:
6262
handler(self)
6363
except Exception as e:
64-
self.logger.error("Couldn't run handler '{}' - The following exception occurred: ''".format(handler, e))
64+
self.logger.error("Couldn't run handler '{0}' - The following exception occurred: '{1}'".format(handler, e))
6565

6666
def start(self, user_id):
6767
"""

0 commit comments

Comments
 (0)