From 962cf66bcdbcc705ab6102676edb7c5a43f00a7b Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sun, 25 Sep 2022 05:17:15 +0200 Subject: [PATCH] flush printed shit --- files/routes/static.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/routes/static.py b/files/routes/static.py index fc4da54c93..8695e36da1 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -509,14 +509,14 @@ if SITE == 'pcmemes.net' or True: live.append((id, req.url, t.group(1), y.group(2), y.group(1), count)) cache.set('live', live) except: - print(id) + print(id, flush=True) else: y = offline_regex.search(txt) try: offline.append((id, req.url.rstrip('/live'), y.group(2), y.group(1))) cache.set('offline', offline) except: - print(id) + print(id, flush=True) return render_template('live.html', v=v, live=live, offline=offline, msg="Channel added successfuly!")