From 52cae37609e3cf9db2a19d1d9d01147bf57629b6 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Thu, 18 Apr 2019 08:40:11 +1200 Subject: [PATCH] Fix crash of remote_path exception. #1223 --- nzbToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nzbToMedia.py b/nzbToMedia.py index 1eed58f9..4435ca04 100755 --- a/nzbToMedia.py +++ b/nzbToMedia.py @@ -782,7 +782,7 @@ def process(input_directory, input_name=None, status=0, client_agent='manual', d ) except Exception: logger.error('Remote Path {0} is not valid for {1}:{2} Please set this to either 0 to disable or 1 to enable!'.format( - core.get('remote_path'), section_name, input_category)) + cfg.get('remote_path'), section_name, input_category)) input_name, input_directory = convert_to_ascii(input_name, input_directory)