Commit 645b5b08 authored by Stefan H. Holek's avatar Stefan H. Holek

Remove a missing fixer warning which showed during normal operations. Fixes #305.

--HG--
branch : distribute
extra : rebase_source : 3e5912a80758abf1e198d400c29ab03112eb68d6
parent 11270be6
......@@ -51,9 +51,7 @@ try:
if self.distribution.use_2to3_exclude_fixers is not None:
excluded_fixers.extend(self.distribution.use_2to3_exclude_fixers)
for fixer_name in excluded_fixers:
if fixer_name not in self.fixer_names:
log.warn("Excluded fixer %s not found", fixer_name)
continue
if fixer_name in self.fixer_names:
self.fixer_names.remove(fixer_name)
except ImportError:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment