diff options
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -691,7 +691,7 @@ class Project(object): | |||
691 | di = self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD) | 691 | di = self.work_git.DiffZ('diff-index', '-M', '--cached', HEAD) |
692 | df = self.work_git.DiffZ('diff-files') | 692 | df = self.work_git.DiffZ('diff-files') |
693 | do = self.work_git.LsOthers() | 693 | do = self.work_git.LsOthers() |
694 | if not rb and not di and not df and not do: | 694 | if not rb and not di and not df and not do and not self.CurrentBranch: |
695 | return 'CLEAN' | 695 | return 'CLEAN' |
696 | 696 | ||
697 | out = StatusColoring(self.config) | 697 | out = StatusColoring(self.config) |