Ratings: Display info on missing omdb key when ratings is set

pull/105/head
desimaniac 5 years ago
parent 9dcbe44f90
commit 809e4adeeb

@ -700,8 +700,11 @@ def movies(list_type, add_limit=0, add_delay=2.5, sort='votes', rating=None, gen
log.info("Sorted movies list to process by highest 'votes'") log.info("Sorted movies list to process by highest 'votes'")
# display specified min RT score # display specified min RT score
if rating is not None and 'omdb' in cfg and 'api_key' in cfg['omdb'] and cfg['omdb']['api_key']: if rating is not None:
if 'omdb' in cfg and 'api_key' in cfg['omdb'] and cfg['omdb']['api_key']:
log.info("Minimum Rotten Tomatoes score of %d%% requested.", rating) log.info("Minimum Rotten Tomatoes score of %d%% requested.", rating)
else:
log.info("Skipping minimum Rotten Tomatoes score check as OMDb api key is missing.")
# loop movies # loop movies
log.info("Processing list now...") log.info("Processing list now...")

Loading…
Cancel
Save