Compare commits

..

No commits in common. "8e4b94efc227c6dc1c87362c12c86055ff2e5f05" and "a9b16a8a72a9bdd9984547a8bfcf87391246ac53" have entirely different histories.

View File

@ -116,7 +116,7 @@ def cddb(disc_id, server_url=default_server, user=default_user, host=hostname, c
value = int(value) value = int(value)
data[key] = value data[key] = value
elif match[0] == "DTITLE": elif match[0] == "DTITLE":
art_tit = value.split(" / ", 2) art_tit = value.split("/", 2)
data[KEY_ARTIST] = art_tit[0].strip() data[KEY_ARTIST] = art_tit[0].strip()
data[KEY_ALBUM] = art_tit[1].strip() data[KEY_ALBUM] = art_tit[1].strip()
elif match[0].startswith("TTITLE"): elif match[0].startswith("TTITLE"):