diff -r 4550d8e34765 -r 3d88d53f8c2b install-debugclients.py --- 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)