--> -->
 
 
IOError
Python 2.4.3: /usr/bin/python
Sun Jul 27 09:55:14 2008

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

 /var/www/cgi-bin/index.py
  367     errs.append(line)
  368   logfile=PRIVATE+'/xmlerror.log'
  369   logfiled=open(logfile,'a')
  370   if errs:
  371     logfiled.write("%s: ERROR IN REQUEST: %s\n" % (tsstring,file))
logfiled undefined, builtin open = <type 'file'>, logfile = '/home/ajh/local/localhost/xmlerror.log'

IOError: [Errno 2] No such file or directory: '/home/ajh/local/localhost/xmlerror.log'
      args = (2, 'No such file or directory')
      errno = 2
      filename = '/home/ajh/local/localhost/xmlerror.log'
      strerror = 'No such file or directory'