mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Patch #103587: Fix typo that broke the install_data command; caught by
Uche Ogbuji
This commit is contained in:
parent
0872d9d2c2
commit
1b26b6a5f1
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class install_data (Command):
|
|||
dir = change_root(self.root, dir)
|
||||
self.mkpath(dir)
|
||||
for data in f[1]:
|
||||
data = convert_path(f[1])
|
||||
data = convert_path(data)
|
||||
(out, _) = self.copy_file(data, dir)
|
||||
self.outfiles.append(out)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue