From 1b26b6a5f16636c58296b852d7adaa10a44640f7 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Mon, 5 Feb 2001 17:43:11 +0000 Subject: Patch #103587: Fix typo that broke the install_data command; caught by Uche Ogbuji --- Lib/distutils/command/install_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index 503c1aa..28f5938 100644 --- a/Lib/distutils/command/install_data.py +++ b/Lib/distutils/command/install_data.py @@ -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) -- cgit v0.12