Merge branch 'fix-bzr-shelves' into develop
This commit is contained in:
commit
e49d129cb2
|
@ -53,7 +53,8 @@ class Repository(object):
|
||||||
dirtied = 'D'
|
dirtied = 'D'
|
||||||
elif line and line[0] == '?':
|
elif line and line[0] == '?':
|
||||||
untracked = 'U'
|
untracked = 'U'
|
||||||
return dirtied + untracked
|
ans = dirtied + untracked
|
||||||
|
return ans if ans.strip() else None
|
||||||
|
|
||||||
def branch(self):
|
def branch(self):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue