D6499: phabricator: make `hg debugcallconduit` work outside a hg repo
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Sun Jun 9 23:56:29 UTC 2019
pulkit updated this revision to Diff 15410.
pulkit edited the summary of this revision.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D6499?vs=15387&id=15410
REVISION DETAIL
https://phab.mercurial-scm.org/D6499
AFFECTED FILES
hgext/phabricator.py
CHANGE DETAILS
diff --git a/hgext/phabricator.py b/hgext/phabricator.py
--- a/hgext/phabricator.py
+++ b/hgext/phabricator.py
@@ -125,7 +125,7 @@
)),
]
-def vcrcommand(name, flags, spec, helpcategory=None):
+def vcrcommand(name, flags, spec, helpcategory=None, optionalrepo=False):
fullflags = flags + _VCR_FLAGS
def hgmatcher(r1, r2):
if r1.uri != r2.uri or r1.method != r2.method:
@@ -156,7 +156,8 @@
return fn(*args, **kwargs)
inner.__name__ = fn.__name__
inner.__doc__ = fn.__doc__
- return command(name, fullflags, spec, helpcategory=helpcategory)(inner)
+ return command(name, fullflags, spec, helpcategory=helpcategory,
+ optionalrepo=optionalrepo)(inner)
return decorate
def urlencodenested(params):
@@ -242,7 +243,7 @@
raise error.Abort(msg)
return parsed[b'result']
- at vcrcommand(b'debugcallconduit', [], _(b'METHOD'))
+ at vcrcommand(b'debugcallconduit', [], _(b'METHOD'), optionalrepo=True)
def debugcallconduit(ui, repo, name):
"""call Conduit API
To: pulkit, #hg-reviewers
Cc: yuja, Kwan, mercurial-devel
More information about the Mercurial-devel
mailing list