mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-20 22:54:10 +00:00
Fix parsing of the "Pseudo-Release" release status
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user