From 1212b284adc6f4625c80708f55bd7506d2ad23e5 Mon Sep 17 00:00:00 2001 From: dbr Date: Sat, 8 Nov 2008 19:45:02 +1030 Subject: [PATCH] Output full path of errored files --- checkTvEps.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/checkTvEps.py b/checkTvEps.py index 7e49385..2a837ff 100755 --- a/checkTvEps.py +++ b/checkTvEps.py @@ -298,7 +298,8 @@ if len(invalid) > 0: print "#"*len(errormsg) for c in errors: - print c['filename'] + cur_path = os.path.join(c['path'], c['filename'] + c['cext']) + print cur_path ################################### # Show valid names