From 1cbdb149f790a9bb902f9b38f1d71b02cb2eeb34 Mon Sep 17 00:00:00 2001 From: blacktwin Date: Wed, 11 Sep 2019 21:29:55 -0400 Subject: [PATCH] Added apsces in the output --- utility/find_unwatched.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utility/find_unwatched.py b/utility/find_unwatched.py index 9ee77bb..9cb9743 100644 --- a/utility/find_unwatched.py +++ b/utility/find_unwatched.py @@ -160,11 +160,11 @@ for i in sorted(show_lst, reverse=True): added = time.ctime(float(x.added_at)) if x.grandparent_title == '' or x.media_type == 'movie': # Movies - print(u"{x.title} ({x.rating_key}) was added {when} and has not been" + print(u"{x.title} ({x.rating_key}) was added {when} and has not been " u"watched. \n File location: {x.file}".format(x=x, when=added)) else: # Shows - print(u"{x.grandparent_title}: {x.title} ({x.rating_key}) was added {when} and has" + print(u"{x.grandparent_title}: {x.title} ({x.rating_key}) was added {when} and has " u"not been watched. \n File location: {x.file}".format(x=x, when=added)) path_lst += [x.file]