Always debug print the dbversion

This commit is contained in:
Kovid Goyal
2025-03-11 11:37:34 +05:30
parent 4c47f44c43
commit aeb4e152f4
+1 -1
View File
@@ -50,7 +50,7 @@ class Database:
with suppress(StopIteration):
result = next(cursor)
self.dbversion = result['version']
debug_print('Database Version: ', self.dbversion)
debug_print('Database Version: ', self.dbversion)
self.dbpath = path
self.needs_copy = True
self.use_row_factory = True