Merge branch 'jk/commit-how-to-abort-cherry-pick'
[gitweb.git] / contrib / remote-helpers / git-remote-bzr
index 3cd65723c3ad04e0b339d17b36ece64d537f23f7..c3a3cac77b875b2cb925971e2baca141f9c4f163 100755 (executable)
@@ -116,7 +116,10 @@ class Marks:
         self.last_mark = mark
 
     def get_tip(self, branch):
-        return self.tips.get(branch, None)
+        try:
+            return str(self.tips[branch])
+        except KeyError:
+            return None
 
     def set_tip(self, branch, tip):
         self.tips[branch] = tip