summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-02-17 23:10:18 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-02-17 23:10:18 (GMT)
commit14d34a0e43ce1b4dba1da50376011cd7a18dba49 (patch)
tree7bb98ca96e1c71c1540ecbe104530393723d9a4d /Lib/distutils/command
parentacd82b99c87d85511e5967e8836b36d950f965e5 (diff)
downloadcpython-14d34a0e43ce1b4dba1da50376011cd7a18dba49.zip
cpython-14d34a0e43ce1b4dba1da50376011cd7a18dba49.tar.gz
cpython-14d34a0e43ce1b4dba1da50376011cd7a18dba49.tar.bz2
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 ........
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/sdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index 9bb2ae0..1a64d0e 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -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)