aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/language/__init__.py
diff options
context:
space:
mode:
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