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 cjw296
Recipients Adam.Groszer, cjw296, eric.araujo, tarek
Date 2010-09-15.15:50:05
SpamBayes Score 0.027168667
Marked as misclassified No
Message-id <1284565806.98.0.290574222451.issue6884@psf.upfronthosting.co.za>
In-reply-to
Content
Okay, so here's the patch:

Change line 352 on distutils/filelist.py from:

pattern_re = "^" + os.path.join(prefix_re, ".*" + pattern_re)

To:

pattern_re = "^"+prefix_re+re.escape(os.sep)+".*"+pattern_re

os.path.join is is not always the saviour ;-)
History
Date User Action Args
2010-09-15 15:50:07cjw296setrecipients: + cjw296, tarek, eric.araujo, Adam.Groszer
2010-09-15 15:50:06cjw296setmessageid: <1284565806.98.0.290574222451.issue6884@psf.upfronthosting.co.za>
2010-09-15 15:50:05cjw296linkissue6884 messages
2010-09-15 15:50:05cjw296create