🧵 Type error resolved

This commit is contained in:
Timothy Miller 2021-02-27 11:53:30 -05:00
parent e129789a85
commit a816fb6c3f

View File

@ -152,7 +152,7 @@ if __name__ == '__main__':
if(len(sys.argv) > 1): if(len(sys.argv) > 1):
if(sys.argv[1] == "--repeat"): if(sys.argv[1] == "--repeat"):
delay = 5*60 # 5 minutes delay = 5*60 # 5 minutes
print("Updating A & AAAA records every " + delay + " seconds") print("Updating A & AAAA records every " + str(delay) + " seconds")
next_time = time.time() next_time = time.time()
killer = GracefulExit() killer = GracefulExit()
while not killer.kill_now: while not killer.kill_now: