Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1b26b6a

Browse files
committed
Patch #103587: Fix typo that broke the install_data command; caught by
Uche Ogbuji
1 parent 0872d9d commit 1b26b6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/distutils/command/install_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def run (self):
6464
dir = change_root(self.root, dir)
6565
self.mkpath(dir)
6666
for data in f[1]:
67-
data = convert_path(f[1])
67+
data = convert_path(data)
6868
(out, _) = self.copy_file(data, dir)
6969
self.outfiles.append(out)
7070

0 commit comments

Comments
 (0)