1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

svtplay_dl: silence pylint warning when using % with log

This commit is contained in:
Olof Johansson 2014-03-19 23:01:36 +01:00
parent 0efff3c2fe
commit f5aceffad7

View File

@ -76,7 +76,7 @@ def get_media(url, options):
else:
substream = service_handler(o)
log.info("Episode %d of %d" % (idx + 1, len(episodes)))
log.info("Episode %d of %d", idx + 1, len(episodes))
# get_one_media overwrites options.output...
get_one_media(substream, copy.copy(options))