--> -->
 
 
<type 'exceptions.TypeError'>
Python 2.7.5: /bin/python
Sat Oct 18 22:43:38 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /home/rautenkr/public_html/tobias/darcsweb/darcsweb.cgi in ()
   2652 elif action == 'plainblob':
   2653         fname = filter_file(form["f"].value)
=> 2654         do_plainblob(fname)
   2655 
   2656 elif action == 'tree':
do_plainblob = <function do_plainblob>, fname = 'origami.ogg'
 /home/rautenkr/public_html/tobias/darcsweb/darcsweb.cgi in do_plainblob(fname='origami.ogg')
   1936                 print_plain_header()
   1937                 for l in f:
=> 1938                         sys.stdout.write(fixu8(l))
   1939 
   1940 
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 = 'OggS\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\xc9\xf4\x04x\x00\x00\x00\x00\xdc\xec\x01(\x01*\x80theora\x03\x02\x01\x00%\x00\x1c\x00\x02N\x00\x01\xb5\x02\x05\x00\x00\x00\n'
 /home/rautenkr/public_html/tobias/darcsweb/darcsweb.cgi in fixu8(s='OggS\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\xc9\xf4\x04x\x00\x00\x00\x00\xdc\xec\x01(\x01*\x80theora\x03\x02\x01\x00%\x00\x1c\x00\x02N\x00\x01\xb5\x02\x05\x00\x00\x00\n')
    104         n = []
    105         for i in s.split('\n'):
=>  106                 n.append(_fixu8(i))
    107         return '\n'.join(n)
    108 
n = [], n.append = <built-in method append of list object>, global _fixu8 = <function _fixu8>, i = 'OggS\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\xc9\xf4\x04x\x00\x00\x00\x00\xdc\xec\x01(\x01*\x80theora\x03\x02\x01\x00%\x00\x1c\x00\x02N\x00\x01\xb5\x02\x05\x00\x00\x00'
 /home/rautenkr/public_html/tobias/darcsweb/darcsweb.cgi in _fixu8(s='OggS\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\xc9\xf4\x04x\x00\x00\x00\x00\xdc\xec\x01(\x01*\x80theora\x03\x02\x01\x00%\x00\x1c\x00\x02N\x00\x01\xb5\x02\x05\x00\x00\x00')
    115                 except UnicodeDecodeError:
    116                         pass
=>  117         raise 'DecodingError', config.repoencoding
    118 
    119 
global config = <class __main__.config>, config.repoencoding = ('utf8',)

<type 'exceptions.TypeError'>: exceptions must be old-style classes or derived from BaseException, not str
      args = ('exceptions must be old-style classes or derived from BaseException, not str',)
      message = 'exceptions must be old-style classes or derived from BaseException, not str'