Fix parsing of the "Pseudo-Release" release status

This commit is contained in:
Lukáš Lalinský
2008-09-05 14:09:33 +02:00
parent e10b259008
commit 95c0dd8bf6

View File

@@ -135,7 +135,7 @@ def release_to_metadata(node, m, config=None, album=None):
if 'type' in node.attribs:
types = node.attribs['type'].split()
for t in types:
if t in ('Official', 'Promotion', 'Bootleg', 'Pseudo-Release'):
if t in ('Official', 'Promotion', 'Bootleg', 'PseudoRelease'):
m['releasestatus'] = t.lower()
else:
m['releasetype'] = t.lower()