aboutsummaryrefslogtreecommitdiff
path: root/src/due
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-07-29 18:00:53 -0700
committerFuwn <[email protected]>2023-07-29 18:00:53 -0700
commitbab0b38a85b185246f4ec89953ee837e829e267e (patch)
tree3b4b29b3bf2ff6a4c06a08f91973b695642597ff /src/due
parentci(docker): multi-stage build (diff)
downloadold.due.moe-bab0b38a85b185246f4ec89953ee837e829e267e.tar.xz
old.due.moe-bab0b38a85b185246f4ec89953ee837e829e267e.zip
fix(index): flush on print
Diffstat (limited to 'src/due')
-rw-r--r--src/due/routes/index.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/due/routes/index.py b/src/due/routes/index.py
index 5fce75e..226319f 100644
--- a/src/due/routes/index.py
+++ b/src/due/routes/index.py
@@ -70,7 +70,7 @@ def home(username):
anilist, "ANIME", request.args.get("username") or username
)
- print(name)
+ print(name, flush=True)
releasing_anime = [
media for media in current_anime if media["media"]["status"] == "RELEASING"