1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Correct what is attempted to be converted to limit

This commit is contained in:
Phxntxm 2017-04-16 18:03:32 -05:00
parent 5ac2d6f8ce
commit 53f9183ab6

View file

@ -522,7 +522,7 @@ class Mod:
limit = 100
for x in specifications:
try:
limit = int(limit)
limit = int(x)
if limit <= 100:
break
else: