--> -->
<type 'exceptions.TypeError'> | Python 2.7.3: /usr/bin/python Fri Nov 22 23:01:00 2024 |
A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
/domain/repo.kepibu.org/web/htdocs/darcsweb/darcsweb.cgi in () |
2771 elif action == 'headblob':
|
2772 fname = filter_file(form["f"].value)
|
=> 2773 do_headblob(fname)
|
2774
|
2775 elif action == 'plainblob':
|
do_headblob = <function do_headblob>, fname = '/docs/html/images/unif-templ-hier.sxd' |
/domain/repo.kepibu.org/web/htdocs/darcsweb/darcsweb.cgi in do_headblob(fname='/docs/html/images/unif-templ-hier.sxd') |
1997 print '</b></div>'
|
1998
|
=> 1999 print_blob(fname)
|
2000 print_footer()
|
2001
|
global print_blob = <function print_blob>, fname = '/docs/html/images/unif-templ-hier.sxd' |
/domain/repo.kepibu.org/web/htdocs/darcsweb/darcsweb.cgi in print_blob(fname='/docs/html/images/unif-templ-hier.sxd') |
1330 except ValueError:
|
1331 # pygments really could not find any lexer for this file.
|
=> 1332 print_blob_simple(fname)
|
1333
|
1334 def print_blob_simple(fname):
|
global print_blob_simple = <function print_blob_simple>, fname = '/docs/html/images/unif-templ-hier.sxd' |
/domain/repo.kepibu.org/web/htdocs/darcsweb/darcsweb.cgi in print_blob_simple(fname='/docs/html/images/unif-templ-hier.sxd') |
1338 count = 1
|
1339 for l in f:
|
=> 1340 l = fixu8(escape(l))
|
1341 if l and l[-1] == '\n':
|
1342 l = l[:-1]
|
l = 'PK\x03\x04\x14\x00\x00\x00\x00\x00{\x97J1\xe53\xd0\xb8\x1c\x00\x00\x00\x1c\x00\x00\x00\x08\x00\x00\x00mimetypeapplicatio...ctures/100000000000027300000123225DBF5C.png\x89PNG\r\n', global fixu8 = <function fixu8>, global escape = <function escape> |
/domain/repo.kepibu.org/web/htdocs/darcsweb/darcsweb.cgi in fixu8(s='PK\x03\x04\x14\x00\x00\x00\x00\x00{\x97J1\xe53\xd0\xb8\x1c\x00\x00\x00\x1c\x00\x00\x00\x08\x00\x00\x00mimetypeapplicatio...ctures/100000000000027300000123225DBF5C.png\x89PNG\r\n') |
106 n = []
|
107 for i in s.split('\n'):
|
=> 108 n.append(_fixu8(i))
|
109 return '\n'.join(n)
|
110
|
n = [], n.append = <built-in method append of list object>, global _fixu8 = <function _fixu8>, i = 'PK\x03\x04\x14\x00\x00\x00\x00\x00{\x97J1\xe53\xd0\xb8\x1c\x00\x00\x00\x1c\x00\x00\x00\x08\x00\x00\x00mimetypeapplicatio...ictures/100000000000027300000123225DBF5C.png\x89PNG\r' |
/domain/repo.kepibu.org/web/htdocs/darcsweb/darcsweb.cgi in _fixu8(s='PK\x03\x04\x14\x00\x00\x00\x00\x00{\x97J1\xe53\xd0\xb8\x1c\x00\x00\x00\x1c\x00\x00\x00\x08\x00\x00\x00mimetypeapplicatio...ictures/100000000000027300000123225DBF5C.png\x89PNG\r') |
117 except UnicodeDecodeError:
|
118 pass
|
=> 119 raise UnicodeDecodeError, config.repoencoding
|
120
|
121
|
builtin UnicodeDecodeError = <type 'exceptions.UnicodeDecodeError'>, global config = <class __main__.config>, config.repoencoding = ('utf8',) |
<type 'exceptions.TypeError'>: function takes exactly 5 arguments (1 given)
args =
('function takes exactly 5 arguments (1 given)',)
message =
'function takes exactly 5 arguments (1 given)'