Remove rogue commas making tuples of my strings

This commit is contained in:
Stein Magnus Jodal 2012-11-21 10:42:33 +01:00
parent 6cb2d6293d
commit d153fa6b59

View File

@ -13,9 +13,9 @@ import glib
logger = logging.getLogger('mopidy.utils.path')
XDG_CACHE_DIR = glib.get_user_cache_dir().decode('utf-8'),
XDG_CONFIG_DIR = glib.get_user_config_dir().decode('utf-8'),
XDG_DATA_DIR = glib.get_user_data_dir().decode('utf-8'),
XDG_CACHE_DIR = glib.get_user_cache_dir().decode('utf-8')
XDG_CONFIG_DIR = glib.get_user_config_dir().decode('utf-8')
XDG_DATA_DIR = glib.get_user_data_dir().decode('utf-8')
XDG_MUSIC_DIR = glib.get_user_special_dir(glib.USER_DIRECTORY_MUSIC)
if XDG_MUSIC_DIR:
XDG_MUSIC_DIR = XDG_MUSIC_DIR.decode('utf-8')