From 0b6f3c9a6b46797505dc6e2d9c4389249c4a1696 Mon Sep 17 00:00:00 2001 From: blacktwin Date: Wed, 26 Feb 2020 14:57:52 -0500 Subject: [PATCH] print out correction after->before --- utility/media_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility/media_manager.py b/utility/media_manager.py index f5b373c..73edd46 100644 --- a/utility/media_manager.py +++ b/utility/media_manager.py @@ -404,7 +404,7 @@ if __name__ == '__main__': unwatched_lst += unwatched_work(sectionID=_library.key, date=date) if opts.action == 'show': - print("The following items were added after {}".format(opts.date)) + print("The following items were added before {}".format(opts.date)) for item in unwatched_lst: added_at = datetime.datetime.utcfromtimestamp(float(item.added_at)).strftime("%Y-%m-%d") print(" {} added {}\n File: {}".format(item.title, added_at, item.file))