Display release country in matching releases
This simplifies choosing the correct release when there are multiple matches. If a certain release has multiple countries associated, all will be shown. Thanks to the user "the-confessor" for testing this new feature. Fixes #451. Signed-off-by: JoeLametta <JoeLametta@users.noreply.github.com>
This commit is contained in:
@@ -318,6 +318,8 @@ class Program:
|
||||
print('Type : %s' % metadata.releaseType)
|
||||
if metadata.barcode:
|
||||
print("Barcode : %s" % metadata.barcode)
|
||||
if metadata.countries:
|
||||
print("Country : %s" % ', '.join(metadata.countries))
|
||||
# TODO: Add test for non ASCII catalog numbers: see issue #215
|
||||
if metadata.catalogNumber:
|
||||
print("Cat no : %s" % metadata.catalogNumber)
|
||||
|
||||
Reference in New Issue
Block a user