diff --git a/optional/fetchmail/fetchmail.py b/optional/fetchmail/fetchmail.py index 9dc4a14c..137a061a 100755 --- a/optional/fetchmail/fetchmail.py +++ b/optional/fetchmail/fetchmail.py @@ -103,8 +103,8 @@ def run(debug): user_info in error_message): print(error_message) finally: - requests.post("http://" + os.environ["ADMIN_ADDRESS"] + "/internal/fetch/{}".format(fetch["id"]), - json=error_message.split("\n")[0] + requests.post("http://{}/internal/fetch/{}".format(os.environ['ADMIN_ADDRESS'],fetch['id']), + json=error_message.split('\n')[0] ) except Exception: traceback.print_exc()