Commit 6cea6933 authored by Walter Dörwald's avatar Walter Dörwald

Fix wrong variable name.

parent a2cc2695
...@@ -79,7 +79,7 @@ def warn_explicit(message, category, filename, lineno, ...@@ -79,7 +79,7 @@ def warn_explicit(message, category, filename, lineno,
action, msg, cat, mod, ln = item action, msg, cat, mod, ln = item
if ((msg is None or msg.match(text)) and if ((msg is None or msg.match(text)) and
issubclass(category, cat) and issubclass(category, cat) and
(msg is None or mod.match(module)) and (mod is None or mod.match(module)) and
(ln == 0 or lineno == ln)): (ln == 0 or lineno == ln)):
break break
else: else:
......
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