# HG changeset patch # User Bryan O'Sullivan # Date 2006-08-02 16:18:56 # Node ID c5ac397f7671746c9ee4d11107021723236ca105 # Parent 0327bd1c831c2c2854377aae064961796e573be5 fix call to commands.setremoteconfig diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -1228,7 +1228,7 @@ def clone(ui, source, dest=None, **opts) Source patch repository is looked for in /.hg/patches by default. Use -p to change. ''' - commands.setremoteconfig(**opts) + commands.setremoteconfig(ui, opts) if dest is None: dest = hg.defaultdest(source) sr = hg.repository(ui, ui.expandpath(source))