hgext/transplant.py
changeset 7280 810ca383da9c
parent 6966 057ced2b8543
child 7308 b6f5490effbf
--- a/hgext/transplant.py	Tue Oct 28 19:07:14 2008 +0100
+++ b/hgext/transplant.py	Tue Oct 28 19:25:26 2008 +0100
@@ -455,14 +455,6 @@
     If a changeset application fails, you can fix the merge by hand and
     then resume where you left off by calling hg transplant --continue.
     '''
-    def getoneitem(opts, item, errmsg):
-        val = opts.get(item)
-        if val:
-            if len(val) > 1:
-                raise util.Abort(errmsg)
-            else:
-                return val[0]
-
     def getremotechanges(repo, url):
         sourcerepo = ui.expandpath(url)
         source = hg.repository(ui, sourcerepo)