Skip to content

Commit 14392c0

Browse files
committed
Fix missing comma in error handler
1 parent afaadba commit 14392c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Chapter09/coffee_list1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self):
6767
missing_tables = required_tables - set(tables)
6868
if missing_tables:
6969
qtw.QMessageBox.critical(
70-
None, 'DB Integrity Error'
70+
None, 'DB Integrity Error',
7171
'Missing tables, please repair DB: '
7272
f'{missing_tables}')
7373
sys.exit(1)

0 commit comments

Comments
 (0)