# HG changeset patch # User Pierre-Yves David # Date 1669995756 -3600 # Node ID f22364e4eb133a388f931872f36d666240cfe826 # Parent 30eb36d93072c72a4918bea60db9b5499bb4c4ba path: pass `path` to `peer` in mq We directly use the `path` object to build the `peer` object. There is one case where we don't. We should fix that at the same time as we fix the sub-repo cases. diff -r 30eb36d93072 -r f22364e4eb13 hgext/mq.py --- a/hgext/mq.py Fri Dec 02 16:36:43 2022 +0100 +++ b/hgext/mq.py Fri Dec 02 16:42:36 2022 +0100 @@ -2854,16 +2854,17 @@ # main repo (destination and sources) if dest is None: dest = hg.defaultdest(source) - __, source_path, __ = urlutil.get_clone_path(ui, source) + source_path = urlutil.get_clone_path_obj(ui, source) sr = hg.peer(ui, opts, source_path) # patches repo (source only) if opts.get(b'patches'): - __, patchespath, __ = urlutil.get_clone_path(ui, opts.get(b'patches')) + patches_path = urlutil.get_clone_path_obj(ui, opts.get(b'patches')) else: - patchespath = patchdir(sr) + # XXX path: we should turn this into a path object + patches_path = patchdir(sr) try: - hg.peer(ui, opts, patchespath) + hg.peer(ui, opts, patches_path) except error.RepoError: raise error.Abort( _(b'versioned patch repository not found (see init --mq)')