Skip to content

Commit

Permalink
fix: add missing placeholder in format string
Browse files Browse the repository at this point in the history
  • Loading branch information
d-Rickyy-b committed Jan 6, 2021
1 parent 9132f99 commit 846b3ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blackjack/game/blackjackgame.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _run_handlers(self, handlers):
try:
handler(self)
except Exception as e:
self.logger.error("Couldn't run handler '{}' - The following exception occurred: ''".format(handler, e))
self.logger.error("Couldn't run handler '{0}' - The following exception occurred: '{1}'".format(handler, e))

def start(self, user_id):
"""
Expand Down

0 comments on commit 846b3ad

Please sign in to comment.