xrange is correct in this case
This commit is contained in:
parent
bf49b374eb
commit
4160015e61
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Reference in a new issue