##// END OF EJS Templates
shelve: move 'nothing changed' messaging to a separate function...
Kostia Balytskyi -
r30382:dedf0915 default
parent child Browse files
Show More
@@ -320,6 +320,14 b' def getcommitfunc(extra, interactive, ed'
320
320
321 return interactivecommitfunc if interactive else commitfunc
321 return interactivecommitfunc if interactive else commitfunc
322
322
323 def _nothingtoshelvemessaging(ui, repo, pats, opts):
324 stat = repo.status(match=scmutil.match(repo[None], pats, opts))
325 if stat.deleted:
326 ui.status(_("nothing changed (%d missing files, see "
327 "'hg status')\n") % len(stat.deleted))
328 else:
329 ui.status(_("nothing changed\n"))
330
323 def _docreatecmd(ui, repo, pats, opts):
331 def _docreatecmd(ui, repo, pats, opts):
324 wctx = repo[None]
332 wctx = repo[None]
325 parents = wctx.parents()
333 parents = wctx.parents()
@@ -369,12 +377,7 b' def _docreatecmd(ui, repo, pats, opts):'
369 node = cmdutil.dorecord(ui, repo, commitfunc, None,
377 node = cmdutil.dorecord(ui, repo, commitfunc, None,
370 False, cmdutil.recordfilter, *pats, **opts)
378 False, cmdutil.recordfilter, *pats, **opts)
371 if not node:
379 if not node:
372 stat = repo.status(match=scmutil.match(repo[None], pats, opts))
380 _nothingtoshelvemessaging(ui, repo, pats, opts)
373 if stat.deleted:
374 ui.status(_("nothing changed (%d missing files, see "
375 "'hg status')\n") % len(stat.deleted))
376 else:
377 ui.status(_("nothing changed\n"))
378 return 1
381 return 1
379
382
380 bases = list(mutableancestors(repo[node]))
383 bases = list(mutableancestors(repo[node]))
General Comments 0
You need to be logged in to leave comments. Login now