From c0ccde3b964ce75032fdeb82944cbf07bafe5174 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Wed, 15 Jan 2025 11:45:13 +0100 Subject: [PATCH] fix: Remove extraneous `f` prefix --- nextcloud2ntfy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nextcloud2ntfy.py b/nextcloud2ntfy.py index 353394f..3fc719d 100644 --- a/nextcloud2ntfy.py +++ b/nextcloud2ntfy.py @@ -189,7 +189,7 @@ def main(): log.error("Error parsing response from Nextcloud!") log.error(f"Response code: {response.status_code}") log.error(f"Response body:\n{response.text}") - log.error(f"=====================================") + log.error("=====================================") log.error(f"Exception:\n{e}") @@ -225,7 +225,7 @@ def main(): }) log.debug(f"Notification actions:\n{actions}") - log.info(f"Pushing notification to ntfy.") + log.info("Pushing notification to ntfy.") response = push_to_ntfy(config["ntfy_base_url"], config["ntfy_token"], config["ntfy_topic"], title, notification["link"], message, actions) if response.status_code == 429: