git-update: fix typo in message

This commit is contained in:
Stéphane Cerveau 2020-02-27 09:01:57 +01:00
parent 7716ea303a
commit bc5c73e651

View file

@ -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