--> -->
 
 
<type 'exceptions.TypeError'>
Python 2.7.3: /usr/bin/python
Sat Nov 23 02:46:53 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 ()
   2775 elif action == 'plainblob':
   2776         fname = filter_file(form["f"].value)
=> 2777         do_plainblob(fname)
   2778 
   2779 elif action == 'tree':
do_plainblob = <function do_plainblob>, fname = 'docs/html/images/unif-templ-hier.sxd'
 /domain/repo.kepibu.org/web/htdocs/darcsweb/darcsweb.cgi in do_plainblob(fname='docs/html/images/unif-templ-hier.sxd')
   2011                 print_plain_header()
   2012                 for l in f:
=> 2013                         sys.stdout.write(fixu8(l))
   2014 
   2015 
global sys = <module 'sys' (built-in)>, sys.stdout = <open file '<stdout>', mode 'w'>, sys.stdout.write = <built-in method write of file object>, global fixu8 = <function fixu8>, 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'
 /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)'