1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-01-20 13:49:02 +00:00

FIX:(#1928) Incorrect logging statement when file checker would attempt to return list of Failed Files

This commit is contained in:
evilhero 2018-04-22 01:11:52 -04:00
parent 343c5a45b9
commit 0efc698086

View file

@ -200,7 +200,7 @@ class FileChecker(object):
watchmatch['comiclist'] = comiclist
if len(self.failed_files) > 0:
logger.info('FAILED FILES: %s', self.failed_files)
logger.info('FAILED FILES: %s' % self.failed_files)
return watchmatch