Always debug print the dbversion

This commit is contained in:
Kovid Goyal 2025-03-11 11:37:34 +05:30
parent 4c47f44c43
commit aeb4e152f4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -50,7 +50,7 @@ class Database:
with suppress(StopIteration): with suppress(StopIteration):
result = next(cursor) result = next(cursor)
self.dbversion = result['version'] self.dbversion = result['version']
debug_print('Database Version: ', self.dbversion) debug_print('Database Version: ', self.dbversion)
self.dbpath = path self.dbpath = path
self.needs_copy = True self.needs_copy = True
self.use_row_factory = True self.use_row_factory = True