Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb/webcommands.py @ 6410:644a56c7ae79
fix bug introduced by 894875eae49b (short not defined)
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sun, 30 Mar 2008 22:22:53 +0200 |
parents | 894875eae49b |
children | 62e0bb41e682 |
comparison
equal
deleted
inserted
replaced
6409:47f4a47161b4 | 6410:644a56c7ae79 |
---|---|
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 import os, mimetypes, re | 8 import os, mimetypes, re |
9 import webutil | 9 import webutil |
10 from mercurial import revlog, archival | 10 from mercurial import revlog, archival |
11 from mercurial.node import hex, nullid | 11 from mercurial.node import short, hex, nullid |
12 from mercurial.util import binary | 12 from mercurial.util import binary |
13 from mercurial.repo import RepoError | 13 from mercurial.repo import RepoError |
14 from common import paritygen, staticfile, get_contact, ErrorResponse | 14 from common import paritygen, staticfile, get_contact, ErrorResponse |
15 from common import HTTP_OK, HTTP_NOT_FOUND | 15 from common import HTTP_OK, HTTP_NOT_FOUND |
16 | 16 |