Skip to content

Commit

Permalink
typo fix for "existance"
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffschaller committed Apr 18, 2024
1 parent 98f19ea commit 3d69409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers.py
Expand Up @@ -63,7 +63,7 @@ class ErrorLogs:
db.commit()
except (sqlite3.OperationalError):
# In CI testing, it's possible for the table to be created in a different thread between when
# we first test for the table's existance and when we try to create the table.
# we first test for the table's existence and when we try to create the table.
if db.execute("SELECT name FROM sqlite_master WHERE type='table' AND name='error_logs'").fetchone() is None:
# Table 'error_logs' still doesn't exist
raise
Expand Down

0 comments on commit 3d69409

Please sign in to comment.