Skip to content

Commit

Permalink
Merge pull request #1 from ruippeixotog/match-info-formatting
Browse files Browse the repository at this point in the history
Show match URL in confirmation prompt
  • Loading branch information
jcazevedo committed Oct 29, 2014
2 parents ac947ce + 67bf23e commit 2dda4cf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions beetsplug/rymgenre/__init__.py
Expand Up @@ -137,8 +137,11 @@ def set_url():
url = ui.input_('Enter rateyourmusic url:')
return { 'href': url }

print(u'\nBest candidate for {0} - {1} ({2}):'.format(
beets_album.albumartist, beets_album.album, beets_album.year))
print(u'Fetching genre for album:\n {0} - {1}'.format(
beets_album.albumartist, beets_album.album))

print(u'URL:\n %s' % albums[0]['href'])

print(format_rym_album(albums[0]))
res = ui.input_options(['apply', 'more candidates', 'set url', 'skip'])
if res == 'a':
Expand Down

0 comments on commit 2dda4cf

Please sign in to comment.