Merge branch '324-fix-bzr-branch-name' into develop
This commit is contained in:
commit
9f5793c453
|
@ -58,6 +58,6 @@ class Repository(object):
|
||||||
def branch(self):
|
def branch(self):
|
||||||
try:
|
try:
|
||||||
b = branch.Branch.open(self.directory)
|
b = branch.Branch.open(self.directory)
|
||||||
return b.nick or None
|
return b._get_nick(local=True) or None
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue