fixed the data_files inclusion behavior

This commit is contained in:
Tarek Ziadé 2009-02-17 23:06:51 +00:00
parent 17a837e4db
commit 0e5001eff9
3 changed files with 8 additions and 3 deletions

View file

@ -319,7 +319,7 @@ class sdist (Command):
else: # a (dirname, filenames) tuple
dirname, filenames = item
for f in filenames:
f = convert_path(os.path.join(dirname, f))
f = convert_path(f)
if os.path.isfile(f):
self.filelist.append(f)