Mercurial > public > mercurial-scm > hg
diff mercurial/hgweb/request.py @ 2394:a8f1049d1d2d
hgweb: fix errors and warnings found by pychecker
- fix missing import
- use type_ instead of type
- remove unused variable
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sun, 04 Jun 2006 12:19:51 +0200 |
parents | d351a3be3371 |
children | a2df85adface |
line wrap: on
line diff
--- a/mercurial/hgweb/request.py Sun Jun 04 02:25:27 2006 +0200 +++ b/mercurial/hgweb/request.py Sun Jun 04 12:19:51 2006 +0200 @@ -7,7 +7,7 @@ # of the GNU General Public License, incorporated herein by reference. from mercurial.demandload import demandload -demandload(globals(), "socket sys cgi os") +demandload(globals(), "socket sys cgi os errno") from mercurial.i18n import gettext as _ class hgrequest(object):