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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b26b6a5f16636c58296b852d7adaa10a44640f7;p=thirdparty%2FPython%2Fcpython.git 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 503c1aa8aca0..28f593866cae 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)