diff options
| author | Fuwn <[email protected]> | 2023-07-29 18:00:53 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-07-29 18:00:53 -0700 |
| commit | bab0b38a85b185246f4ec89953ee837e829e267e (patch) | |
| tree | 3b4b29b3bf2ff6a4c06a08f91973b695642597ff /src/due | |
| parent | ci(docker): multi-stage build (diff) | |
| download | old.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.py | 2 |
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" |