Commit 4ba4909f authored by Jason R. Coombs's avatar Jason R. Coombs

Fix failure on non-Windows systems

parent c8c9b75c
...@@ -252,8 +252,7 @@ class manifest_maker(sdist): ...@@ -252,8 +252,7 @@ class manifest_maker(sdist):
Write the file list in 'self.filelist' to the manifest file Write the file list in 'self.filelist' to the manifest file
named by 'self.manifest'. named by 'self.manifest'.
""" """
if os.sep!='/': files = [f.replace(os.sep, '/') for f in self.filelist.files]
files = [f.replace(os.sep,'/') for f in self.filelist.files]
self.execute(write_file, (self.manifest, files), self.execute(write_file, (self.manifest, files),
"writing manifest file '%s'" % self.manifest) "writing manifest file '%s'" % self.manifest)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment