From 4e97b26bfa8f82226623b3332dddbeb6e9d144fb Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 13 Nov 2019 15:17:08 +0000 Subject: [PATCH] int convert to be sure --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index abb3a0c3..caa2ff5f 100644 --- a/utils.py +++ b/utils.py @@ -393,7 +393,7 @@ def noOfActiveAccountsMonthly(baseDir: str,months: int) -> bool: """ accountCtr=0 currTime=int(time.time()) - monthSeconds=60*60*24*30*months + monthSeconds=int(60*60*24*30*months) for subdir, dirs, files in os.walk(baseDir+'/accounts'): for account in dirs: if '@' in account: