Mercurial > hg-stable
changeset 20103:b3483223f734 stable
shelve: fix bad argument interaction with largefiles (issue4111)
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 25 Nov 2013 13:46:46 -0600 |
parents | 88e172871ad7 |
children | 224e96078708 |
files | hgext/shelve.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/shelve.py Mon Nov 18 08:57:19 2013 -0800 +++ b/hgext/shelve.py Mon Nov 25 13:46:46 2013 -0600 @@ -558,7 +558,7 @@ oldquiet = ui.quiet try: ui.quiet = True - node = cmdutil.commit(ui, repo, commitfunc, None, tempopts) + node = cmdutil.commit(ui, repo, commitfunc, [], tempopts) finally: ui.quiet = oldquiet tmpwctx = repo[node]