]> granicus.if.org Git - python/commitdiff
Patch #103587: Fix typo that broke the install_data command; caught by
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 5 Feb 2001 17:43:11 +0000 (17:43 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 5 Feb 2001 17:43:11 +0000 (17:43 +0000)
   Uche Ogbuji

Lib/distutils/command/install_data.py

index 503c1aa8aca024722b0a67e38f2af49ddb83dfa7..28f593866cae2012398b720d364c59757f43afbc 100644 (file)
@@ -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)