Merged revisions 69724 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69724 | tarek.ziade | 2009-02-18 00:06:51 +0100 (Wed, 18 Feb 2009) | 1 line

  fixed the data_files inclusion behavior
........
This commit is contained in:
Tarek Ziadé 2009-02-17 23:10:18 +00:00
parent acd82b99c8
commit 14d34a0e43
3 changed files with 8 additions and 3 deletions

View file

@ -311,7 +311,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)