Mercurial > hg-stable
changeset 40872:236af7cfa4c3
shelve: change transaction description from "commit" to "shelve"
"commit" was probably a copy&paste mistake.
Differential Revision: https://phab.mercurial-scm.org/D5390
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Wed, 05 Dec 2018 14:17:15 -0800 |
parents | d7e44da4dc70 |
children | b7823bd59b07 |
files | hgext/shelve.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/shelve.py Wed Dec 05 14:08:01 2018 -0800 +++ b/hgext/shelve.py Wed Dec 05 14:17:15 2018 -0800 @@ -479,7 +479,7 @@ # use an uncommitted transaction to generate the bundle to avoid # pull races. ensure we don't print the abort message to stderr. - tr = repo.transaction('commit', report=lambda x: None) + tr = repo.transaction('shelve', report=lambda x: None) interactive = opts.get('interactive', False) includeunknown = (opts.get('unknown', False) and