# HG changeset patch # User Yuya Nishihara # Date 2015-12-23 13:37:24 # Node ID 8c9bbf5cd34947f4d4ce37d7cd891ca02ad816b8 # Parent 980957333cfae95e5de5063f7d6b2430ed616b9a chgserver: mark as a built-in extension diff --git a/hgext/chgserver.py b/hgext/chgserver.py --- a/hgext/chgserver.py +++ b/hgext/chgserver.py @@ -48,6 +48,12 @@ from mercurial import ( util, ) +# Note for extension authors: ONLY specify testedwith = 'internal' for +# extensions which SHIP WITH MERCURIAL. Non-mainline extensions should +# be specifying the version(s) of Mercurial they are tested with, or +# leave the attribute unspecified. +testedwith = 'internal' + _log = commandserver.log # copied from hgext/pager.py:uisetup()