# HG changeset patch # User Matt Harbison # Date 2020-03-04 15:25:07 # Node ID 5e2d74e5f4500f241f89926023d66be45e6515dc # Parent d5d262c7e7a232f610011db69cc716afa5a7a89e phabricator: make `hg phabread` work outside of a repository This is similar to 16312ea45a8b and 2513f0f70a26- we don't need a repo, but will load .hg/hgrc if inside one. Differential Revision: https://phab.mercurial-scm.org/D8214 diff --git a/hgext/phabricator.py b/hgext/phabricator.py --- a/hgext/phabricator.py +++ b/hgext/phabricator.py @@ -1655,6 +1655,7 @@ def readpatch(ui, drevs, write): [(b'', b'stack', False, _(b'read dependencies'))], _(b'DREVSPEC [OPTIONS]'), helpcategory=command.CATEGORY_IMPORT_EXPORT, + optionalrepo=True, ) def phabread(ui, repo, spec, **opts): """print patches from Phabricator suitable for importing @@ -1678,13 +1679,13 @@ def phabread(ui, repo, spec, **opts): opts = pycompat.byteskwargs(opts) if opts.get(b'stack'): spec = b':(%s)' % spec - drevs = querydrev(repo.ui, spec) + drevs = querydrev(ui, spec) def _write(patches): for drev, content in patches: ui.write(content) - readpatch(repo.ui, drevs, _write) + readpatch(ui, drevs, _write) @vcrcommand(