Fix a stupid syntax error

Use python's format-string syntax.
This commit is contained in:
Mika Bostrom 2009-11-27 22:21:45 +02:00
parent df6d9a0a56
commit 6dec7f38f3

View File

@ -260,7 +260,7 @@ class HUD_main(object):
if hasattr(tablewindow, 'number'):
self.create_HUD(new_hand_id, tablewindow, temp_key, max, poker_game, type, stat_dict, cards)
else:
sys.stderr.write('Table "%s" no longer exists\n', table_name)
sys.stderr.write('Table "%s" no longer exists\n' % table_name)
self.db_connection.connection.rollback()