From: Andrew M. Kuchling Date: Mon, 5 Feb 2001 17:43:11 +0000 (+0000) Subject: Patch #103587: Fix typo that broke the install_data command; caught by X-Git-Tag: v2.1b1~511 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b26b6a5f16636c58296b852d7adaa10a44640f7;p=python Patch #103587: Fix typo that broke the install_data command; caught by Uche Ogbuji --- diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index 503c1aa8ac..28f593866c 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)