##// END OF EJS Templates
wireprotoserver: don't import symbol from hgweb.common...
Gregory Szorc -
r35876:1b76a9e0 default
parent child Browse files
Show More
@@ -9,9 +9,6 b' from __future__ import absolute_import'
9 import cgi
9 import cgi
10 import struct
10 import struct
11
11
12 from .hgweb.common import (
13 HTTP_OK,
14 )
15 from . import (
12 from . import (
16 error,
13 error,
17 pycompat,
14 pycompat,
@@ -24,6 +21,8 b' stringio = util.stringio'
24 urlerr = util.urlerr
21 urlerr = util.urlerr
25 urlreq = util.urlreq
22 urlreq = util.urlreq
26
23
24 HTTP_OK = 200
25
27 HGTYPE = 'application/mercurial-0.1'
26 HGTYPE = 'application/mercurial-0.1'
28 HGTYPE2 = 'application/mercurial-0.2'
27 HGTYPE2 = 'application/mercurial-0.2'
29 HGERRTYPE = 'application/hg-error'
28 HGERRTYPE = 'application/hg-error'
General Comments 0
You need to be logged in to leave comments. Login now