From bc4cbbd9d997c01caf848f27d33ab8d58675f89e Mon Sep 17 00:00:00 2001 From: Adriaan van Moergestel Date: Fri, 15 Dec 2023 04:22:49 +1100 Subject: [PATCH] fixed typo in entry_with_update.py (#1306) --- entry_with_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entry_with_update.py b/entry_with_update.py index 5c02786..4b66ac2 100644 --- a/entry_with_update.py +++ b/entry_with_update.py @@ -37,7 +37,7 @@ try: repo.reset(local_branch.target, pygit2.GIT_RESET_HARD) print("Fast-forward merge") elif merge_result & pygit2.GIT_MERGE_ANALYSIS_NORMAL: - print("Update failed - Did you modified any file?") + print("Update failed - Did you modify any file?") except Exception as e: print('Update failed.') print(str(e))