Merge branch 'fix-bzr-shelves' into develop

This commit is contained in:
Kim Silkebækken 2013-03-18 08:29:05 +01:00
commit e49d129cb2
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ class Repository(object):
dirtied = 'D'
elif line and line[0] == '?':
untracked = 'U'
return dirtied + untracked
ans = dirtied + untracked
return ans if ans.strip() else None
def branch(self):
try: