summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/sdist.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/sdist.py')
-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 9bb2ae04e0..1a64d0e3c1 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)