268 self.__data["ExcludeFiles"] = filterString |
268 self.__data["ExcludeFiles"] = filterString |
269 self.__project.setData("OTHERTOOLSPARMS", "CodeMetrics", |
269 self.__project.setData("OTHERTOOLSPARMS", "CodeMetrics", |
270 self.__data) |
270 self.__data) |
271 filterList = filterString.split(",") |
271 filterList = filterString.split(",") |
272 if filterList: |
272 if filterList: |
273 for filter in filterList: |
273 for filterString in filterList: |
274 fileList = [f for f in fileList |
274 fileList = [f for f in fileList |
275 if not fnmatch.fnmatch(f, filter.strip())] |
275 if not fnmatch.fnmatch(f, filterString.strip())] |
276 |
276 |
277 self.resultList.clear() |
277 self.resultList.clear() |
278 self.summaryList.clear() |
278 self.summaryList.clear() |
279 self.start(fileList) |
279 self.start(fileList) |
280 |
280 |