int convert to be sure

merge-requests/3/merge
Bob Mottram 2019-11-13 15:17:08 +00:00
parent edc004b0ab
commit 4e97b26bfa
1 changed files with 1 additions and 1 deletions

View File

@ -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: