diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-02-05 17:43:11 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-02-05 17:43:11 (GMT) |
commit | 1b26b6a5f16636c58296b852d7adaa10a44640f7 (patch) | |
tree | 24e413ddc1494092c20e8f812361f45398613349 /Lib/distutils/command | |
parent | 0872d9d2c24144812fb47090c473e16860709c70 (diff) | |
download | cpython-1b26b6a5f16636c58296b852d7adaa10a44640f7.zip cpython-1b26b6a5f16636c58296b852d7adaa10a44640f7.tar.gz cpython-1b26b6a5f16636c58296b852d7adaa10a44640f7.tar.bz2 |
Patch #103587: Fix typo that broke the install_data command; caught by
Uche Ogbuji
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/install_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |