<type 'exceptions.OSError'> | Python 2.7.7: /usr/bin/python2 Fri May 20 00:22:37 2022 |
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/python2.7/runpy.py in _run_module_as_main(mod_name='__main__', alter_argv=0) |
160 sys.argv[0] = fname |
161 return _run_code(code, main_globals, None, |
=> 162 "__main__", fname, loader, pkg_name) |
163 |
164 def run_module(mod_name, init_globals=None, |
fname = 'index.cgi/__main__.py', loader = <zipimporter object "index.cgi">, pkg_name = '' |
/usr/lib/python2.7/runpy.py in _run_code(code=<code object <module> at 0xdee27da0, file "index.cgi/__main__.py", line 1>, run_globals={'__builtins__': <module '__builtin__' (built-in)>, '__doc__': None, '__file__': 'index.cgi/__main__.py', '__loader__': <zipimporter object "index.cgi">, '__name__': '__main__', '__package__': '', 'main': <module 'main' from 'index.cgi/main.py'>}, init_globals=None, mod_name='__main__', mod_fname='index.cgi/__main__.py', mod_loader=<zipimporter object "index.cgi">, pkg_name='') |
70 __loader__ = mod_loader, |
71 __package__ = pkg_name) |
=> 72 exec code in run_globals |
73 return run_globals |
74 |
code = <code object <module> at 0xdee27da0, file "index.cgi/__main__.py", line 1>, run_globals = {'__builtins__': <module '__builtin__' (built-in)>, '__doc__': None, '__file__': 'index.cgi/__main__.py', '__loader__': <zipimporter object "index.cgi">, '__name__': '__main__', '__package__': '', 'main': <module 'main' from 'index.cgi/main.py'>} |
/big/dom/xuntroubled/www/lists/index.cgi/__main__.py in |
1 import main |
=> 2 main.main() |
/big/dom/xuntroubled/www/lists/index.cgi/main.py in main() |
180 |
181 if path is not None: |
182 main_path(ctxt, path) |
183 else: |
=> 184 main_form(ctxt) |
/big/dom/xuntroubled/www/lists/index.cgi/main.py in main_form(ctxt={'listemail': 'commits@lists.untroubled.org', 'R...': 'br,gzip', 'UNIQUE_ID': 'YocXjUUFHwQAAH5KW4s'}) |
142 |
143 def main_form(ctxt): |
=> 144 setup_list(ctxt) |
145 if ctxt.has_key('command'): ctxt['cmd'] = ctxt['command'] |
146 if '/' in ctxt['cmd']: |
/big/dom/xuntroubled/www/lists/index.cgi/main.py in setup_list(ctxt={'listemail': 'commits@lists.untroubled.org', 'R...': 'br,gzip', 'UNIQUE_ID': 'YocXjUUFHwQAAH5KW4s'}) |
39 die(ctxt, 'Unknown list: ' + list) |
40 ctxt.update(base) |
=> 41 eza = ctxt['ezmlm'] = ezmlm.EzmlmArchive(ctxt['listdir']) |
42 if ctxt.has_key('msgnum'): |
43 ctxt.update(eza.index[ctxt['msgnum']]) |
/big/dom/xuntroubled/www/lists/index.cgi/ezmlm.py in __init__(self=<ezmlm.EzmlmArchive instance>, listdir='/big/dom/xuntroubled/bruceg/commits') |
164 self.archdir = os.path.join(listdir, 'archive') |
165 self.months = map(int, |
=> 166 os.listdir(os.path.join(self.archdir, 'threads'))) |
167 self.months = filter(lambda a: a >= 190000 and a <= 299999, |
168 self.months) |
<type 'exceptions.OSError'>: [Errno 2] No such file or directory: '/big/dom/xuntroubled/bruceg/commits/archive/threads'
args =
(2, 'No such file or directory')
errno =
2
filename =
'/big/dom/xuntroubled/bruceg/commits/archive/threads'
message =
''
strerror =
'No such file or directory'