This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author srid
Recipients lars.gustaebel, srid
Date 2010-05-17.18:07:09
SpamBayes Score 0.0049386634
Marked as misclassified No
Message-id <1274119631.2.0.633921152242.issue8741@psf.upfronthosting.co.za>
In-reply-to
Content
The actual exception caught (before it was ignored and a generic IOError was thrown) was this:

  File "C:\Python27\lib\tarfile.py", line 2168, in _extract_member
    self.makelink(tarinfo, targetpath)
  File "C:\Python27\lib\tarfile.py", line 2258, in makelink
    shutil.copy2(linkpath, targetpath)
  File "C:\Python27\lib\shutil.py", line 127, in copy2
    copyfile(src, dst)
  File "C:\Python27\lib\shutil.py", line 81, in copyfile
    with open(src, 'rb') as fsrc:
IOError: [Errno 2] No such file or directory: 'eternity-0.13\\src\\eternity\\django\\templates\\eui\\concerns\\..\\registry\\delet
e.html'

The specified file actually does not exist. Perhaps, in the middle of the extraction process, it was not created *yet*.
History
Date User Action Args
2010-05-17 18:07:11sridsetrecipients: + srid, lars.gustaebel
2010-05-17 18:07:11sridsetmessageid: <1274119631.2.0.633921152242.issue8741@psf.upfronthosting.co.za>
2010-05-17 18:07:09sridlinkissue8741 messages
2010-05-17 18:07:09sridcreate