From bc5c73e6514885ea954aa1becb98ff178641e9ec Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Cerveau?= Date: Thu, 27 Feb 2020 09:01:57 +0100 Subject: [PATCH] git-update: fix typo in message --- git-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-update b/git-update index 8c223d3..37d9a43 100755 --- a/git-update +++ b/git-update @@ -69,7 +69,7 @@ def repo_status(commit_message): if message.startswith('??'): status = "%sclean but untracked files%s" % (Colors.WARNING,Colors.ENDC) elif message.startswith(' M'): - status = "%shas local modificationss%s" % (Colors.WARNING,Colors.ENDC) + status = "%shas local modifications%s" % (Colors.WARNING,Colors.ENDC) break; return status -- 2.7.4