mirror of https://github.com/python/cpython
Patch #103587: Fix typo that broke the install_data command; caught by
Uche Ogbuji
This commit is contained in:
parent
0872d9d2c2
commit
1b26b6a5f1
|
@ -64,7 +64,7 @@ class install_data (Command):
|
||||||
dir = change_root(self.root, dir)
|
dir = change_root(self.root, dir)
|
||||||
self.mkpath(dir)
|
self.mkpath(dir)
|
||||||
for data in f[1]:
|
for data in f[1]:
|
||||||
data = convert_path(f[1])
|
data = convert_path(data)
|
||||||
(out, _) = self.copy_file(data, dir)
|
(out, _) = self.copy_file(data, dir)
|
||||||
self.outfiles.append(out)
|
self.outfiles.append(out)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue