Message9783

Author zyasoft
Recipients jeff.allen, zyasoft
Date 2015-04-09.23:40:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428622820.48.0.522940692957.issue2310@psf.upfronthosting.co.za>
In-reply-to
Content
Unfortunately a bit late in the game for os.name vs os._name! ;)

So this capabilities testing is buggy, since symlink can be set to None in 

symlink = os.symlink if hasattr(os, 'symlink') else (
    _symlink_win32 if platform.system() == 'Windows' else None
)

which seems quite reasonable, but the can_symlink does not properly account for that possibility. I would suggest fixing the problem in the can_symlink function.
History
Date User Action Args
2015-04-09 23:40:20zyasoftsetmessageid: <1428622820.48.0.522940692957.issue2310@psf.upfronthosting.co.za>
2015-04-09 23:40:20zyasoftsetrecipients: + zyasoft, jeff.allen
2015-04-09 23:40:20zyasoftlinkissue2310 messages
2015-04-09 23:40:20zyasoftcreate