From d686d14aea669f95c4797205d6c595089841ce84 Mon Sep 17 00:00:00 2001 From: Zohan Subhash Date: Wed, 15 Feb 2023 10:04:40 +0530 Subject: [PATCH] Update imagegen.py --- imagegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagegen.py b/imagegen.py index debe673..ecc7106 100644 --- a/imagegen.py +++ b/imagegen.py @@ -17,7 +17,7 @@ def get_quota(): def generate_random_integers(num, min_val, max_val): # If we've exceeded the quota at the moment, tell the user to try again later. quota = get_quota() - print "Current quota: " + str(quota) + print("Current quota: " + str(quota)) if quota <= 0: raise Exception("Sorry, your random.org API limit is exceeded at the moment. Please try again later.")