diff --git a/copyright.py b/copyright.py index 7478d40d86f5228ac67954a10265d55e249e6651..24723cfa1b5adf5f2f23dbbc91d64ef4e20fcdbb 100644 --- a/copyright.py +++ b/copyright.py @@ -13,7 +13,6 @@ def findFiles(directory, files=[]): if os.path.isfile(path) and (path.endswith(".py") or path.endswith(".pyx") or path.endswith(".pxd")): - #if filename != "__init__.py" and filename != "version.py": files.append(path) elif os.path.isdir(path): findFiles(path, files)