Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
janjaapdriessen committed Dec 16, 2010
1 parent 12ebbe7 commit 222a0eb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/z3c/recipe/compattest/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,9 @@ def _find_dependencies(self):
result.append(dist.project_name)
return result


def _wanted_packages(self):
projects = self.include + self._find_dependencies()
projects = list(set(projects)) # Filter out duplicates.
projects = list(set(projects)) # Filter out duplicates.
for project in projects:
for regex in self.exclude:
if re.compile(regex).search(project):
Expand Down

0 comments on commit 222a0eb

Please sign in to comment.