install-debugclients.py

changeset 5597
3d88d53f8c2b
parent 5389
9b1c800daff3
child 5651
982465f8389c
--- a/install-debugclients.py	Thu Mar 09 17:56:06 2017 +0100
+++ b/install-debugclients.py	Thu Mar 09 19:28:59 2017 +0100
@@ -127,8 +127,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