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 Claudiu.Popa
Recipients Claudiu.Popa, dstufft, eric.araujo
Date 2014-08-11.12:38:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1407760736.2.0.981302438241.issue22182@psf.upfronthosting.co.za>
In-reply-to
Content
Hi. When os.rename fails inside distutils.file_util.move_file, the exception is unpacked using ``(num, msg) = e``. While this was valid in Python 2, in Python 3 it should be ``e.args``. The attached patched fixes this.
History
Date User Action Args
2014-08-11 12:38:56Claudiu.Popasetrecipients: + Claudiu.Popa, eric.araujo, dstufft
2014-08-11 12:38:56Claudiu.Popasetmessageid: <1407760736.2.0.981302438241.issue22182@psf.upfronthosting.co.za>
2014-08-11 12:38:56Claudiu.Popalinkissue22182 messages
2014-08-11 12:38:55Claudiu.Popacreate