From e6cdb8888127057953e842048e28c61eb9d448ac Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Sat, 30 Oct 2010 20:42:34 +0200 Subject: [PATCH] Remove print statement --- mopidy/frontends/mpd/translator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mopidy/frontends/mpd/translator.py b/mopidy/frontends/mpd/translator.py index 5f064cc9..da6c6462 100644 --- a/mopidy/frontends/mpd/translator.py +++ b/mopidy/frontends/mpd/translator.py @@ -142,7 +142,6 @@ def tracks_to_directory_tree(tracks): current = directories for part in split_path(os.path.dirname(uri_to_path(uri))): path = os.path.join(path, part) - print path if path not in current[0]: current[0][path] = ({}, []) current = current[0][path]