429 self.__project.setData( |
429 self.__project.setData( |
430 "OTHERTOOLSPARMS", "RadonCodeMetrics", self.__data) |
430 "OTHERTOOLSPARMS", "RadonCodeMetrics", self.__data) |
431 filterList = [f.strip() for f in filterString.split(",") |
431 filterList = [f.strip() for f in filterString.split(",") |
432 if f.strip()] |
432 if f.strip()] |
433 if filterList: |
433 if filterList: |
434 for filter in filterList: |
434 for fileFilter in filterList: |
435 fileList = \ |
435 fileList = \ |
436 [f for f in fileList if not fnmatch.fnmatch(f, filter)] |
436 [f for f in fileList if not fnmatch.fnmatch(f, fileFilter)] |
437 |
437 |
438 self.start(fileList) |
438 self.start(fileList) |
439 |
439 |
440 def clear(self): |
440 def clear(self): |
441 """ |
441 """ |