diff options
-rwxr-xr-x | monitor/josef_experimental.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor/josef_experimental.py b/monitor/josef_experimental.py index e6c3c1a..e76cd4d 100755 --- a/monitor/josef_experimental.py +++ b/monitor/josef_experimental.py @@ -201,14 +201,14 @@ if __name__ == '__main__': # Data gathering for Niklas if True: - logs = [CTLOGS[2]] + logs = [CTLOGS[2],CTLOGS[3],CTLOGS[4],CTLOGS[7],CTLOGS[8],CTLOGS[9]] for log in logs: filename = log["name"] + "_content.txt" if os.path.exists(filename): if prompt_confirm("You are about to overwrite " + filename): os.remove(filename) else: - sys.exit() + continue sth = get_sth(log["url"]) start = 4050 |