From e564278bfdf7c3c5d72c9825d00ee90d1e406aaa Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sat, 30 Sep 2000 17:34:50 +0000 Subject: Expect a tuple (dest_name, copied) from 'copy_file()'. --- Lib/distutils/command/install_data.py | 4 ++-- Lib/distutils/command/install_headers.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index 9ce1183..d9a4869 100644 --- a/Lib/distutils/command/install_data.py +++ b/Lib/distutils/command/install_data.py @@ -52,7 +52,7 @@ class install_data (Command): self.warn("setup script did not provide a directory for " "'%s' -- installing right in '%s'" % (f, self.install_dir)) - out = self.copy_file(f, self.install_dir) + (out, _) = self.copy_file(f, self.install_dir) self.outfiles.append(out) else: # it's a tuple with path to install to and a list of files @@ -63,7 +63,7 @@ class install_data (Command): dir = change_root(self.root, dir) self.mkpath(dir) for data in f[1]: - out = self.copy_file(data, dir) + (out, _) = self.copy_file(data, dir) self.outfiles.append(out) def get_inputs (self): 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): -- cgit v0.12