install.py

changeset 5597
3d88d53f8c2b
parent 5588
6ba512d9f46a
child 5628
3a1bef0560b1
--- a/install.py	Thu Mar 09 17:56:06 2017 +0100
+++ b/install.py	Thu Mar 09 19:28:59 2017 +0100
@@ -452,8 +452,8 @@
         if not skipIt:
             srcname = os.path.join(src, name)
             dstname = os.path.join(dst, name)
-            for filter in filters:
-                if fnmatch.fnmatch(srcname, filter):
+            for fileFilter in filters:
+                if fnmatch.fnmatch(srcname, fileFilter):
                     if not os.path.isdir(dst):
                         os.makedirs(dst)
                     shutil.copy2(srcname, dstname)

eric ide

mercurial