Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb/hgweb_mod.py @ 3974:a3aa97171546
hgweb: fix unused import
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Tue, 26 Dec 2006 03:17:34 +0100 |
parents | b485a4459d96 |
children | 51e52db6b40d |
comparison
equal
deleted
inserted
replaced
3973:b485a4459d96 | 3974:a3aa97171546 |
---|---|
4 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | 4 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
5 # | 5 # |
6 # This software may be used and distributed according to the terms | 6 # This software may be used and distributed according to the terms |
7 # of the GNU General Public License, incorporated herein by reference. | 7 # of the GNU General Public License, incorporated herein by reference. |
8 | 8 |
9 import os, mimetypes, re, zlib, ConfigParser, mimetools, cStringIO, sys | 9 import os, mimetypes, re, zlib, mimetools, cStringIO, sys |
10 import tempfile, urllib, bz2 | 10 import tempfile, urllib, bz2 |
11 from mercurial.node import * | 11 from mercurial.node import * |
12 from mercurial.i18n import gettext as _ | 12 from mercurial.i18n import gettext as _ |
13 from mercurial import mdiff, ui, hg, util, archival, streamclone, patch | 13 from mercurial import mdiff, ui, hg, util, archival, streamclone, patch |
14 from mercurial import revlog, templater | 14 from mercurial import revlog, templater |