# HG changeset patch # User Pierre-Yves David # Date 1443080314 25200 # Node ID 6c93834d7d6617fc3bada770f04ac8e3c8d4c74a # Parent 0a5a774f5956edda010a0c52143f292678c6986c histedit: remove a mutable default argument Mutable default arguments are know to the state of California to cause bugs. diff -r 0a5a774f5956 -r 6c93834d7d66 hgext/histedit.py --- a/hgext/histedit.py Thu Sep 24 01:07:09 2015 -0700 +++ b/hgext/histedit.py Thu Sep 24 00:38:34 2015 -0700 @@ -642,10 +642,12 @@ def commiteditor(self): return cmdutil.getcommiteditor(edit=True, editform='histedit.mess') -def findoutgoing(ui, repo, remote=None, force=False, opts={}): +def findoutgoing(ui, repo, remote=None, force=False, opts=None): """utility function to find the first outgoing changeset Used by initialization code""" + if opts is None: + opts = {} dest = ui.expandpath(remote or 'default-push', remote or 'default') dest, revs = hg.parseurl(dest, None)[:2] ui.status(_('comparing with %s\n') % util.hidepassword(dest))