Last Version: | draft-wkumari-not-a-draft-19.txt | ![]() | Tracker Entry |
Date: | 22-Oct-2023 | ||
Disposition: | current | ||
Previous Versions: | draft-wkumari-not-a-draft-18.txt (diff) - 03-May-2023 | ![]() |
|
draft-wkumari-not-a-draft-17.txt (diff) - 07-Nov-2022 | ![]() |
||
draft-wkumari-not-a-draft-16.txt (diff) - 10-May-2022 | ![]() |
||
draft-wkumari-not-a-draft-15.txt (diff) - 23-Nov-2021 | ![]() |
||
draft-wkumari-not-a-draft-14.txt (diff) - 16-Jun-2021 | ![]() |
||
draft-wkumari-not-a-draft-13.txt (diff) - 30-Apr-2021 | ![]() |
||
draft-wkumari-not-a-draft-12.txt (diff) - 28-Apr-2021 | ![]() |
||
draft-wkumari-not-a-draft-11.txt (diff) - 12-Feb-2021 | ![]() |
||
draft-wkumari-not-a-draft-10.txt (diff) - 28-Jul-2020 | ![]() |
||
draft-wkumari-not-a-draft-08.txt (diff) - 05-Feb-2020 | ![]() |
||
draft-wkumari-not-a-draft-06.txt (diff) - 18-Apr-2014 | ![]() |
||
draft-wkumari-not-a-draft-05.txt (diff) - 17-Apr-2014 | ![]() |
||
draft-wkumari-not-a-draft-04.txt (diff) - 16-Apr-2014 | ![]() |
||
draft-wkumari-not-a-draft-00.txt (diff) - 15-Apr-2014 | ![]() |
--> -->
<type 'exceptions.IOError'> | Python 2.7.18: /usr/local/bin/python2.7 Tue Mar 5 04:34: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.
/away/ietf/code/rfcmk in <module>() |
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/lib/python2.7/urllib.pyc'>, urllib.urlopen = <function urlopen>, url = '/away/ietf/all-ids/draft-19.txt' |
/usr/lib/python2.7/urllib.py in urlopen(url='/away/ietf/all-ids/draft-19.txt', data=None, proxies=None, context=None) |
85 opener = _urlopener |
86 if data is None: |
=> 87 return opener.open(url) |
88 else: |
89 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-19.txt' |
/usr/lib/python2.7/urllib.py in open(self=<urllib.FancyURLopener instance>, fullurl='/away/ietf/all-ids/draft-19.txt', data=None) |
213 try: |
214 if data is None: |
=> 215 return getattr(self, name)(url) |
216 else: |
217 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-19.txt' |
/usr/lib/python2.7/urllib.py in open_file(self=<urllib.FancyURLopener instance>, url='/away/ietf/all-ids/draft-19.txt') |
469 return self.open_ftp(url) |
470 else: |
=> 471 return self.open_local_file(url) |
472 |
473 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-19.txt' |
/usr/lib/python2.7/urllib.py in open_local_file(self=<urllib.FancyURLopener instance>, url='/away/ietf/all-ids/draft-19.txt') |
483 stats = os.stat(localname) |
484 except OSError, e: |
=> 485 raise IOError(e.errno, e.strerror, e.filename) |
486 size = stats.st_size |
487 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-19.txt' |
<type 'exceptions.IOError'>: [Errno 2] No such file or directory: '/away/ietf/all-ids/draft-19.txt'
args =
(2, 'No such file or directory')
errno =
2
filename =
'/away/ietf/all-ids/draft-19.txt'
message =
''
strerror =
'No such file or directory'