--- 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)