mercurial/commands.py
changeset 30509 add7bcad1d9c
parent 30507 dd539e2d89aa
child 30510 a0878bc87379
--- a/mercurial/commands.py	Sat Oct 15 14:06:46 2016 +0900
+++ b/mercurial/commands.py	Sat Oct 15 14:09:36 2016 +0900
@@ -51,7 +51,6 @@
     hbisect,
     help,
     hg,
-    hgweb,
     localrepo,
     lock as lockmod,
     merge as mergemod,
@@ -6300,7 +6299,7 @@
     if opts["cmdserver"]:
         service = server.createcmdservice(ui, repo, opts)
     else:
-        service = hgweb.createservice(ui, repo, opts)
+        service = server.createhgwebservice(ui, repo, opts)
     return server.runservice(opts, initfn=service.init, runfn=service.run)
 
 @command('^status|st',