draft-housley-internet-draft-sig-file


 --> -->
      
/usr/local/lib/python2.6/cgitb.py:173: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 value = pydoc.html.repr(getattr(evalue, name))
 
 
<type 'exceptions.IOError'>
Python 2.6.6: /usr/local/bin/python
Sat May 26 03:57:58 2012

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

 /away/ietf/code/rfcmk in ()
  430         postlude()
  431 
  432 if __name__ == "__main__":
  433     markup()
  434 
markup = <function markup>
 /away/ietf/code/rfcmk in markup()
  335 
  336         # Get the raw text of the source page
  337         f = urllib.urlopen(url)
  338         data = f.read() 
  339         f.close()
f undefined, global urllib = <module 'urllib' from '/usr/local/lib/python2.6/urllib.pyc'>, urllib.urlopen = <function urlopen>, url = '/away/ietf/all-ids/draft-sig-file-08.txt'
 /usr/local/lib/python2.6/urllib.py in urlopen(url='/away/ietf/all-ids/draft-sig-file-08.txt', data=None, proxies=None)
   84         opener = _urlopener
   85     if data is None:
   86         return opener.open(url)
   87     else:
   88         return opener.open(url, data)
opener = <urllib.FancyURLopener instance>, opener.open = <bound method FancyURLopener.open of <urllib.FancyURLopener instance>>, url = '/away/ietf/all-ids/draft-sig-file-08.txt'
 /usr/local/lib/python2.6/urllib.py in open(self=<urllib.FancyURLopener instance>, fullurl='/away/ietf/all-ids/draft-sig-file-08.txt', data=None)
  205         try:
  206             if data is None:
  207                 return getattr(self, name)(url)
  208             else:
  209                 return getattr(self, name)(url, data)
builtin getattr = <built-in function getattr>, self = <urllib.FancyURLopener instance>, name = 'open_file', url = '/away/ietf/all-ids/draft-sig-file-08.txt'
 /usr/local/lib/python2.6/urllib.py in open_file(self=<urllib.FancyURLopener instance>, url='/away/ietf/all-ids/draft-sig-file-08.txt')
  467             return self.open_ftp(url)
  468         else:
  469             return self.open_local_file(url)
  470 
  471     def open_local_file(self, url):
self = <urllib.FancyURLopener instance>, self.open_local_file = <bound method FancyURLopener.open_local_file of <urllib.FancyURLopener instance>>, url = '/away/ietf/all-ids/draft-sig-file-08.txt'
 /usr/local/lib/python2.6/urllib.py in open_local_file(self=<urllib.FancyURLopener instance>, url='/away/ietf/all-ids/draft-sig-file-08.txt')
  481             stats = os.stat(localname)
  482         except OSError, e:
  483             raise IOError(e.errno, e.strerror, e.filename)
  484         size = stats.st_size
  485         modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
builtin IOError = <type 'exceptions.IOError'>, e = OSError(2, 'No such file or directory'), e.errno = 2, e.strerror = 'No such file or directory', e.filename = '/away/ietf/all-ids/draft-sig-file-08.txt'

<type 'exceptions.IOError'>: [Errno 2] No such file or directory: '/away/ietf/all-ids/draft-sig-file-08.txt'
      args = (2, 'No such file or directory')
      errno = 2
      filename = '/away/ietf/all-ids/draft-sig-file-08.txt'
      message = ''
      strerror = 'No such file or directory'