mercurial/localrepo.py
changeset 23775 885c0290f7d5
parent 23749 a387b0390082
child 23852 99e125626352
--- a/mercurial/localrepo.py	Mon Dec 15 14:46:04 2014 -0800
+++ b/mercurial/localrepo.py	Thu Oct 16 21:49:28 2014 -0700
@@ -718,12 +718,21 @@
         branchmap.updatecache(self)
         return self._branchcaches[self.filtername]
 
-    def branchtip(self, branch):
-        '''return the tip node for a given branch'''
+    def branchtip(self, branch, ignoremissing=False):
+        '''return the tip node for a given branch
+
+        If ignoremissing is True, then this method will not raise an error.
+        This is helpful for callers that only expect None for a missing branch
+        (e.g. namespace).
+
+        '''
         try:
             return self.branchmap().branchtip(branch)
         except KeyError:
-            raise error.RepoLookupError(_("unknown branch '%s'") % branch)
+            if not ignoremissing:
+                raise error.RepoLookupError(_("unknown branch '%s'") % branch)
+            else:
+                pass
 
     def lookup(self, key):
         return self[key].node()