diff --git a/main.py b/main.py index 04ed074..ee17307 100644 --- a/main.py +++ b/main.py @@ -37,7 +37,7 @@ if remoteOn is True: for file in os.listdir(remote_path): t = os.path.getmtime(remote_path + file) age = (time.time() -t) / 86400 - if age >= 30 and file != 'Clipboard': + if age >= 7 and file != 'Clipboard': os.remove(remote_path + file) logging.info('-- Deleted %s', file) else: