aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/language/__init__.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-06-18 18:05:09 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-06-18 18:05:09 +0200
commitbfc889d29afdd902b5df30336ff73e484a3592fc (patch)
tree9f0d1cc12258be9ba8998fae688a6de2a8b87b99 /libpathod/language/__init__.py
parentce0e2b12b4ca26143af3bbaa7c0ff7aa6f011d39 (diff)
downloadmitmproxy-bfc889d29afdd902b5df30336ff73e484a3592fc.tar.gz
mitmproxy-bfc889d29afdd902b5df30336ff73e484a3592fc.tar.bz2
mitmproxy-bfc889d29afdd902b5df30336ff73e484a3592fc.zip
fix prospector code smells
Diffstat (limited to 'libpathod/language/__init__.py')
-rw-r--r--libpathod/language/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/language/__init__.py b/libpathod/language/__init__.py
index 10050bf8..4b06f7e4 100644
--- a/libpathod/language/__init__.py
+++ b/libpathod/language/__init__.py
@@ -13,7 +13,7 @@ assert Settings # prevent pyflakes from messing with this
def expand(msg):
times = getattr(msg, "times", None)
if times:
- for j in xrange(int(times.value)):
+ for j_ in xrange(int(times.value)):
yield msg.strike_token("times")
else:
yield msg