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 sniffer
Recipients barry, brett.cannon, flox, sniffer
Date 2010-08-24.07:50:43
SpamBayes Score 0.027578466
Marked as misclassified No
Message-id <1282636245.08.0.558553044023.issue9572@psf.upfronthosting.co.za>
In-reply-to
Content
I was just playing around with the changes you made and it seems you've overlooked a small error/typo around line 502:

502 : 	  	  	n elif errno == errno.EACCES: 

quick fix:

502 : 	  	  	n elif exc.errno == errno.EACCES: 

Hope this helps.
History
Date User Action Args
2010-08-24 07:50:45sniffersetrecipients: + sniffer, barry, brett.cannon, flox
2010-08-24 07:50:45sniffersetmessageid: <1282636245.08.0.558553044023.issue9572@psf.upfronthosting.co.za>
2010-08-24 07:50:43snifferlinkissue9572 messages
2010-08-24 07:50:43sniffercreate