summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_headers.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-30 17:34:50 (GMT)
committerGreg Ward <gward@python.net>2000-09-30 17:34:50 (GMT)
commite564278bfdf7c3c5d72c9825d00ee90d1e406aaa (patch)
treea1d0ea68a1b7e317c857ffb88f6c5c94c213facc /Lib/distutils/command/install_headers.py
parentff50ad53a92b3ce35f1f6a810a808aba02594bfd (diff)
downloadcpython-e564278bfdf7c3c5d72c9825d00ee90d1e406aaa.zip
cpython-e564278bfdf7c3c5d72c9825d00ee90d1e406aaa.tar.gz
cpython-e564278bfdf7c3c5d72c9825d00ee90d1e406aaa.tar.bz2
Expect a tuple (dest_name, copied) from 'copy_file()'.
Diffstat (limited to 'Lib/distutils/command/install_headers.py')
-rw-r--r--Lib/distutils/command/install_headers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py
index ec0cf44..2d72a07 100644
--- a/Lib/distutils/command/install_headers.py
+++ b/Lib/distutils/command/install_headers.py
@@ -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):