From aeb4e152f405f3a1053e1ec071891a9e1d29e0c4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 11 Mar 2025 11:37:34 +0530 Subject: [PATCH] Always debug print the dbversion --- src/calibre/devices/kobo/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/kobo/db.py b/src/calibre/devices/kobo/db.py index 8d68bc701c..1c1b7853f6 100644 --- a/src/calibre/devices/kobo/db.py +++ b/src/calibre/devices/kobo/db.py @@ -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