diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-02-17 23:06:51 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-02-17 23:06:51 (GMT) |
| commit | 0e5001eff9a44bdabe2d2b25903e144a3dcbc77f (patch) | |
| tree | aeee2751c9711e4da9386cdeb82509bbc90617ff /Lib/distutils/command/sdist.py | |
| parent | 17a837e4dba610d87409c3ed532d30aa68502108 (diff) | |
| download | cpython-0e5001eff9a44bdabe2d2b25903e144a3dcbc77f.zip cpython-0e5001eff9a44bdabe2d2b25903e144a3dcbc77f.tar.gz cpython-0e5001eff9a44bdabe2d2b25903e144a3dcbc77f.tar.bz2 | |
fixed the data_files inclusion behavior
Diffstat (limited to 'Lib/distutils/command/sdist.py')
| -rw-r--r-- | Lib/distutils/command/sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index a1a0fb7..a9ce28a 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -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) |
