From 439fc1938f4e315f7153f658d87bf3462e92409c Mon Sep 17 00:00:00 2001 From: Thomas Scholtes Date: Fri, 4 Apr 2014 18:34:59 +0200 Subject: [PATCH] Remove debug print statements --- beetsplug/replaygain.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index 2e99f734b..a57cd97ed 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -256,10 +256,8 @@ class GStreamerBackend(object): """Import the necessary GObject-related modules and assign `Gst` and `GObject` fields on this object. """ - print "here 1" import gi gi.require_version('Gst', '1.0') - print "here 1.5" from gi.repository import GObject, Gst # Thread initialization. The pipeline freezes if not initialized @@ -267,7 +265,6 @@ class GStreamerBackend(object): # the framwork. GObject.threads_init() Gst.init([sys.argv[0]]) - print "here 2" self.GObject = GObject self.Gst = Gst