From dc5691130fa4b02493ca623599c7d233601016cd Mon Sep 17 00:00:00 2001 From: Shane Frischkorn Date: Sat, 13 Jul 2013 16:19:30 +1000 Subject: [PATCH] fixing check for existing output files --- TVEncoder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TVEncoder.py b/TVEncoder.py index 4aed845..9432e1b 100644 --- a/TVEncoder.py +++ b/TVEncoder.py @@ -38,8 +38,8 @@ def print_shows(shows, filemanager): for showdata in shows: if filemanager.checkfileexists(showdata.outputfile): existing.append(showdata) - - print showdata + else: + print showdata if len(existing) > 0: print colored("The following shows have existing output files that "