--- a/mercurial/context.py Tue Mar 13 15:18:10 2007 -0500
+++ b/mercurial/context.py Tue Mar 13 15:47:55 2007 -0500
@@ -67,7 +67,7 @@
def date(self): return self._changeset[2]
def files(self): return self._changeset[3]
def description(self): return self._changeset[4]
- def branch(self): return self._changeset[5].get("branch", "")
+ def branch(self): return self._changeset[5].get("branch")
def parents(self):
"""return contexts for each parent changeset"""
--- a/mercurial/localrepo.py Tue Mar 13 15:18:10 2007 -0500
+++ b/mercurial/localrepo.py Tue Mar 13 15:47:55 2007 -0500
@@ -709,7 +709,7 @@
branchname = ""
if use_dirstate:
- oldname = c1[5].get("branch") or "default" # stored in UTF-8
+ oldname = c1[5].get("branch") # stored in UTF-8
if not commit and not remove and not force and p2 == nullid and \
branchname == oldname:
self.ui.status(_("nothing changed\n"))