# HG changeset patch # User Martin Bornhold # Date 2016-10-28 11:00:59 # Node ID 2582dee7dd4c0f1028fd5a55cdf1913c32cb520a # Parent e1008af8f033b0c7e6a5400f9e54cdf8e9515842 subrepo: Apply mercurial sub repository patch. diff --git a/vcsserver/http_main.py b/vcsserver/http_main.py --- a/vcsserver/http_main.py +++ b/vcsserver/http_main.py @@ -354,5 +354,6 @@ class ResponseFilter(object): def main(global_config, **settings): if MercurialFactory: hgpatches.patch_largefiles_capabilities() + hgpatches.patch_subrepo_type_mapping() app = HTTPApplication(settings=settings) return app.wsgi_app() diff --git a/vcsserver/main.py b/vcsserver/main.py --- a/vcsserver/main.py +++ b/vcsserver/main.py @@ -503,5 +503,6 @@ class VcsServerCommand(object): def main(argv=sys.argv, quiet=False): if MercurialFactory: hgpatches.patch_largefiles_capabilities() + hgpatches.patch_subrepo_type_mapping() command = VcsServerCommand(argv, quiet=quiet) return command.run()