]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Removed erroneous debug print (#13349)
authorBradley Davis <me@bradleydavis.tech>
Thu, 4 Jun 2026 19:51:32 +0000 (12:51 -0700)
committerGitHub <noreply@github.com>
Thu, 4 Jun 2026 19:51:32 +0000 (21:51 +0200)
lib/sqlalchemy/dialects/sqlite/pysqlcipher.py

index 7f2c3d4b796921669f928c89077a94a22dae86c7..f294a66ee251ca7b209cb765d0e90470941e3b3e 100644 (file)
@@ -144,7 +144,6 @@ class SQLiteDialect_pysqlcipher(SQLiteDialect_pysqlite):
             cursor.execute(f"pragma key={passphrase}")
             for prag, value in query_pragmas.items():
                 cursor.execute(f"pragma {prag}={value}")
-            print(query_pragmas)
             cursor.close()
 
             if super_on_connect: