mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Expect a tuple (dest_name, copied) from 'copy_file()'.
This commit is contained in:
parent
ff50ad53a9
commit
e564278bfd
2 changed files with 3 additions and 3 deletions
|
@ -41,7 +41,7 @@ class install_headers (Command):
|
|||
|
||||
self.mkpath(self.install_dir)
|
||||
for header in headers:
|
||||
out = self.copy_file(header, self.install_dir)
|
||||
(out, _) = self.copy_file(header, self.install_dir)
|
||||
self.outfiles.append(out)
|
||||
|
||||
def get_inputs (self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue