From 2147c9e2f8d9865a1cf96739e958c5fa87b08b23 Mon Sep 17 00:00:00 2001 From: jonnybravo Date: Sun, 3 Sep 2023 17:52:40 +0200 Subject: [PATCH] commit message from python script --- check_and_add_pull_git/pull_and_push.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/check_and_add_pull_git/pull_and_push.py b/check_and_add_pull_git/pull_and_push.py index 4572ca0..b216d5f 100644 --- a/check_and_add_pull_git/pull_and_push.py +++ b/check_and_add_pull_git/pull_and_push.py @@ -22,8 +22,7 @@ class my_git(): def git_push(self, git_folder): repo = git.Repo(git_folder) if not repo.is_dirty(untracked_files=True): - print() - print('No Changes detected.' + git_folder) + print('No Changes detected in Folder', git_folder, sep="\n") else: print("Changes detected.") for remote in repo.remotes: