Mercurial > public > mercurial-scm > hg
diff hgext/shelve.py @ 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 | 99c4b8f79324 |
children | 578b888c820e |
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]