From a7357bda93cc120abc96258e9d28016ea39d8ce8 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Mon, 26 Apr 2010 23:03:27 +0200 Subject: [PATCH] Add PLAYLIST_FOLDER setting --- mopidy/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mopidy/settings.py b/mopidy/settings.py index 6cb2928e..ce132ba7 100644 --- a/mopidy/settings.py +++ b/mopidy/settings.py @@ -101,6 +101,9 @@ SPOTIFY_LIB_APPKEY = u'~/.mopidy/spotify_appkey.key' #: Path to the libspotify cache. Used by LibspotifyBackend. SPOTIFY_LIB_CACHE = u'~/.mopidy/libspotify_cache' +#: Path to playlist folder with m3u files. +PLAYLIST_FOLDER = u'~/.mopidy/playlists' + # Import user specific settings dotdir = os.path.expanduser(u'~/.mopidy/') settings_file = os.path.join(dotdir, u'settings.py')