From bc7bc74469ee5e412ae54c45ebaa5e07295323c5 Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Wed, 29 Dec 2021 11:51:05 +0100 Subject: fix(git-prompt): fix clean prompt when stash is not empty (#9978) Fixes #9978 --- plugins/git-prompt/gitstatus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/git-prompt/gitstatus.py') diff --git a/plugins/git-prompt/gitstatus.py b/plugins/git-prompt/gitstatus.py index 786274a71..4dea8000f 100644 --- a/plugins/git-prompt/gitstatus.py +++ b/plugins/git-prompt/gitstatus.py @@ -81,7 +81,7 @@ for st in status: staged.append(st) stashed = get_stash() -if not changed and not staged and not conflicts and not untracked and not stashed: +if not changed and not staged and not conflicts and not untracked: clean = 1 else: clean = 0 -- cgit v1.2.3-70-g09d2