From 17062df04e44909c946c9f11ffefc52598598be1 Mon Sep 17 00:00:00 2001 From: Adam Majer Date: Mon, 10 Jun 2024 15:44:21 +0200 Subject: [PATCH] Fix typo --- lib/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/git.py b/lib/git.py index 635924c..b09c455 100644 --- a/lib/git.py +++ b/lib/git.py @@ -271,7 +271,7 @@ class Git: ["remote"], stdout=subprocess.PIPE, ).stdout.decode("utf-8"): - logger.warning("Not pushing to remote because no 'origin' configured") + logging.warning("Not pushing to remote because no 'origin' configured") return cmd = ["push"]