comparison mercurial/hgweb.py @ 1217:f1895785c79e

Add missing import for hgwebdir
author mpm@selenic.com
date Thu, 08 Sep 2005 00:13:52 -0700
parents db9639b8594c
children 56582bb2b869
comparison
equal deleted inserted replaced
1216:1639fc7c2ccf 1217:f1895785c79e
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, cgi, sys 9 import os, cgi, sys
10 from demandload import demandload 10 from demandload import demandload
11 demandload(globals(), "mdiff time re socket zlib errno ui hg") 11 demandload(globals(), "mdiff time re socket zlib errno ui hg ConfigParser")
12 demandload(globals(), "zipfile tempfile StringIO tarfile BaseHTTPServer") 12 demandload(globals(), "zipfile tempfile StringIO tarfile BaseHTTPServer")
13 from node import * 13 from node import *
14 14
15 def templatepath(): 15 def templatepath():
16 for f in "templates", "../templates": 16 for f in "templates", "../templates":