From 397ad441a8d064be41c31000356f677532e9f1b4 Mon Sep 17 00:00:00 2001 From: Dang Mai Date: Wed, 30 Jan 2013 21:28:54 -0500 Subject: [PATCH] Remove debugging statement Silly me for forgetting to check the pdb statement I just put in ... --- beetsplug/smartplaylist.py | 1 - 1 file changed, 1 deletion(-) diff --git a/beetsplug/smartplaylist.py b/beetsplug/smartplaylist.py index dc4fe2b92..44aae61b5 100644 --- a/beetsplug/smartplaylist.py +++ b/beetsplug/smartplaylist.py @@ -53,7 +53,6 @@ def update_playlists(lib): # Now iterate through the m3us that we need to generate for m3u in m3us: m3u_path = normpath(os.path.join(playlist_dir, m3u)) - import pdb; pdb.set_trace() with open(syspath(m3u_path), 'w') as f: for path in m3us[m3u]: f.write(path + '\n')