Merge branch '324-fix-bzr-branch-name' into develop

This commit is contained in:
Kim Silkebækken 2013-03-15 14:17:40 +01:00
commit 9f5793c453
1 changed files with 1 additions and 1 deletions

View File

@ -58,6 +58,6 @@ class Repository(object):
def branch(self):
try:
b = branch.Branch.open(self.directory)
return b.nick or None
return b._get_nick(local=True) or None
except:
pass