bundles/backup-server: fix TypeError in check_backup_for_node

This commit is contained in:
Franzi 2022-02-13 09:42:59 +01:00
parent e4c317f677
commit 14b402cdf3
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -7,7 +7,7 @@ from sys import argv, exit
from time import time
NODE = argv[1]
ONE_BACKUP_EVERY_HOURS = argv[2]
ONE_BACKUP_EVERY_HOURS = int(argv[2])
NOW = int(time())
DAY_SECONDS = 60 * 60 * 24