phabricator: ensure the command summaries are available in extension help
Previously, `hg help phabricator` listed the 3 supported commands at the bottom
of the extension help, but said "no help text available".
--- a/hgext/phabricator.py Fri Nov 09 23:49:39 2018 +0000
+++ b/hgext/phabricator.py Sat Nov 10 22:25:12 2018 -0500
@@ -142,6 +142,7 @@
return fn(*args, **kwargs)
return fn(*args, **kwargs)
inner.__name__ = fn.__name__
+ inner.__doc__ = fn.__doc__
return command(name, fullflags, spec)(inner)
return decorate