A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
| /usr/lib/pymodules/python2.4/mercurial/hgweb/hgweb_mod.py |
8
|
9 import os
|
10 from mercurial import ui, hg, hook, error, encoding, templater
|
11 from common import get_mtime, ErrorResponse
|
12 from common import HTTP_OK, HTTP_BAD_REQUEST, HTTP_NOT_FOUND, HTTP_SERVER_ERROR
|
| mercurial undefined, ui undefined, hg undefined, hook undefined, error undefined, encoding undefined, templater undefined |
| /usr/lib/pymodules/python2.4/mercurial/ui.py |
8 from i18n import _
|
9 import errno, getpass, os, socket, sys, tempfile, traceback
|
10 import config, util, error
|
11
|
12 _booleans = {'1': True, 'yes': True, 'true': True, 'on': True,
|
| config = None, util undefined, error undefined |
| /usr/lib/pymodules/python2.4/mercurial/util.py |
15
|
16 from i18n import _
|
17 import error, osutil, encoding
|
18 import cStringIO, errno, re, shutil, sys, tempfile, traceback
|
19 import os, stat, time, calendar, textwrap
|
| error = None, osutil undefined, encoding undefined |