From 4160015e610d41888a8c70488448cb58589dcad4 Mon Sep 17 00:00:00 2001 From: Luke Rogers Date: Wed, 11 Sep 2013 02:28:43 +1200 Subject: [PATCH] xrange is correct in this case --- plugins/puush.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/puush.py b/plugins/puush.py index 07b1e5c..015897d 100644 --- a/plugins/puush.py +++ b/plugins/puush.py @@ -41,7 +41,7 @@ def puush(inp): num = int(inp[0]) images = [] - for x in range(num): + for x in xrange(num): ran = make_string() while not check_url(ran): ran = make_string()