Mercurial > public > mercurial-scm > hg
comparison mercurial/hgweb/hgweb_mod.py @ 26226:efebefe162e9
hgweb: drop unused import
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 11 Sep 2015 12:48:09 -0700 |
parents | a43328baa2ac |
children | 2b1434e5eaa0 |
comparison
equal
deleted
inserted
replaced
26225:e257df7a9974 | 26226:efebefe162e9 |
---|---|
8 | 8 |
9 import contextlib | 9 import contextlib |
10 import os | 10 import os |
11 from mercurial import ui, hg, hook, error, encoding, templater, util, repoview | 11 from mercurial import ui, hg, hook, error, encoding, templater, util, repoview |
12 from mercurial.templatefilters import websub | 12 from mercurial.templatefilters import websub |
13 from common import get_stat, ErrorResponse, permhooks, caching | 13 from common import ErrorResponse, permhooks, caching |
14 from common import HTTP_OK, HTTP_NOT_MODIFIED, HTTP_BAD_REQUEST | 14 from common import HTTP_OK, HTTP_NOT_MODIFIED, HTTP_BAD_REQUEST |
15 from common import HTTP_NOT_FOUND, HTTP_SERVER_ERROR | 15 from common import HTTP_NOT_FOUND, HTTP_SERVER_ERROR |
16 from request import wsgirequest | 16 from request import wsgirequest |
17 import webcommands, protocol, webutil | 17 import webcommands, protocol, webutil |
18 | 18 |