From 7a2df318678665f2358c002c6f1cb4ac17720261 Mon Sep 17 00:00:00 2001 From: daghaian Date: Mon, 6 Aug 2018 12:35:47 -0700 Subject: [PATCH] Update traktarr.py Updated location of rating_limit configuration item to reflect move --- traktarr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/traktarr.py b/traktarr.py index 433cc6a..09c4600 100755 --- a/traktarr.py +++ b/traktarr.py @@ -815,7 +815,7 @@ def run(add_delay=2.5, sort='votes', no_search=False, run_now=False, no_notifica no_search, not no_notifications, ignore_blacklist, - int(cfg.automatic.movies.rating_limit) if cfg.automatic.movies.rating_limit != "" else None + int(cfg.filters.movies.rating_limit) if cfg.filters.movies.rating_limit != "" else None ) if run_now: movie_schedule.run()