mercurial/shelve.py
changeset 44602 47c1226463a1
parent 44458 f0021fbedea9
child 44915 b7808443ed6a
--- a/mercurial/shelve.py	Tue Mar 24 17:55:59 2020 +0100
+++ b/mercurial/shelve.py	Mon Mar 23 15:14:42 2020 -0700
@@ -1074,7 +1074,7 @@
         raise error.Abort(m, hint=hint)
 
 
-def dounshelve(ui, repo, *shelved, **opts):
+def unshelvecmd(ui, repo, *shelved, **opts):
     opts = pycompat.byteskwargs(opts)
     abortf = opts.get(b'abort')
     continuef = opts.get(b'continue')
@@ -1121,6 +1121,10 @@
     if not shelvedfile(repo, basename, patchextension).exists():
         raise error.Abort(_(b"shelved change '%s' not found") % basename)
 
+    return _dounshelve(ui, repo, basename, opts)
+
+
+def _dounshelve(ui, repo, basename, opts):
     repo = repo.unfiltered()
     lock = tr = None
     try: