From e91a08099df11749ee2ed9ac40cb1ffbc1c4c1dc Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Thu, 15 Aug 2013 18:15:24 -0700 Subject: [PATCH] remove debug print that slipped in --- beets/library.py | 1 - 1 file changed, 1 deletion(-) diff --git a/beets/library.py b/beets/library.py index f202fce40..439df774e 100644 --- a/beets/library.py +++ b/beets/library.py @@ -1116,7 +1116,6 @@ class Transaction(object): """Execute an SQL statement with substitution values and return the row ID of the last affected row. """ - print statement, subvals cursor = self.lib._connection().execute(statement, subvals) plugins.send('database_change', lib=self.lib) return cursor.lastrowid