1
0
Fork 0
mirror of synced 2024-06-17 09:54:32 +12:00

Update config.py

This commit is contained in:
Nick Sweeting 2022-06-08 19:01:55 -07:00 committed by GitHub
parent c752c7053d
commit 6b019da3e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1005,10 +1005,11 @@ if not CONFIG['CHECK_SSL_VALIDITY']:
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
# get SQLite database version, compile options, and runtime options
with sqlite3.connect(':memory:').cursor() as cursor:
config['SQLITE_VERSION'] = cursor.execute("SELECT sqlite_version();").fetchone()[0]
config['SQLITE_JOURNAL_MODE'] = cursor.execute('PRAGMA journal_mode;').fetchone()[0]
config['SQLITE_OPTIONS'] = [option[0] for option in cursor.execute('PRAGMA compile_options;').fetchall()]
cursor = sqlite3.connect(':memory:').cursor()
config['SQLITE_VERSION'] = cursor.execute("SELECT sqlite_version();").fetchone()[0]
config['SQLITE_JOURNAL_MODE'] = cursor.execute('PRAGMA journal_mode;').fetchone()[0]
config['SQLITE_OPTIONS'] = [option[0] for option in cursor.execute('PRAGMA compile_options;').fetchall()]
cursor.close()
########################### Config Validity Checkers ###########################