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 TTimo
Recipients TTimo
Date 2009-07-22.20:50:21
SpamBayes Score 3.3525098e-06
Marked as misclassified No
Message-id <1248295823.71.0.624674043377.issue6547@psf.upfronthosting.co.za>
In-reply-to
Content
shutil.copytree fails if there is a dangling symlink and symlink is set
to False (which is the default). It will raise an exception when trying
to get to the content of the symlink.

Tested on Debian Etch amd64, python 2.5.2

  File "/usr/lib/python2.5/shutil.py", line 138, in copytree
    raise Error, errors
shutil.Error: [('/opt/daemons/gameslave/.#fabfile.py',
'/tmp/tmphxInsp/gameslave/.#fabfile.py', "[Errno 2] No such file or
directory: '/opt/daemons/gameslave/.#fabfile.py'")]

$ ls -1l /opt/daemons/gameslave/.#fabfile.py
lrwxrwxrwx 1 timo quakelive 20 Jul 22 14:32
/opt/daemons/gameslave/.#fabfile.py -> timo@localhost.12341

(the link is created by emacs - means file being edited I'm guessing)
History
Date User Action Args
2009-07-22 20:50:24TTimosetrecipients: + TTimo
2009-07-22 20:50:23TTimosetmessageid: <1248295823.71.0.624674043377.issue6547@psf.upfronthosting.co.za>
2009-07-22 20:50:21TTimolinkissue6547 messages
2009-07-22 20:50:21TTimocreate