diff --git a/check_and_add_pull_git/main.py b/check_and_add_pull_git/main.py index 22866f2..b65cde0 100644 --- a/check_and_add_pull_git/main.py +++ b/check_and_add_pull_git/main.py @@ -25,7 +25,7 @@ class my_git(): if not repo.is_dirty(untracked_files=True): print('No Changes detected.') else: - print("what") + print("Changes detected.") for remote in repo.remotes: print(remote.name, remote.url) repo.git.add('--all')