From 0bb67982b035a7f158a1999ed86926a71ebd3511 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 21 Oct 2016 00:20:41 +0200 Subject: pyflake fixes unused variables, imports, name shadowing --- poezio/tabs/xmltab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio/tabs/xmltab.py') diff --git a/poezio/tabs/xmltab.py b/poezio/tabs/xmltab.py index 9ed7a77f..e92df03a 100644 --- a/poezio/tabs/xmltab.py +++ b/poezio/tabs/xmltab.py @@ -154,8 +154,8 @@ class XMLTab(Tab): self.refresh() def match_stanza(self, stanza): - for matcher in self.filters: - if not matcher.match(stanza): + for matcher_ in self.filters: + if not matcher_.match(stanza): return False return True -- cgit v1.2.3