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 spaceone
Recipients dstufft, eric.araujo, spaceone
Date 2015-07-03.12:43:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1435927418.71.0.905435090867.issue24558@psf.upfronthosting.co.za>
In-reply-to
Content
my workaround is:
import os.path
def ignore(src, names):
   return [name for name in names if os.path.islink(os.path.join(src, name))]
shutil.copytree(src, dst, ignore=ignore)
History
Date User Action Args
2015-07-03 12:43:38spaceonesetrecipients: + spaceone, eric.araujo, dstufft
2015-07-03 12:43:38spaceonesetmessageid: <1435927418.71.0.905435090867.issue24558@psf.upfronthosting.co.za>
2015-07-03 12:43:38spaceonelinkissue24558 messages
2015-07-03 12:43:38spaceonecreate