From 081240fad14f73c5760b85285b9451d648a29d56 Mon Sep 17 00:00:00 2001 From: ebolam Date: Fri, 19 Aug 2022 10:19:10 -0400 Subject: [PATCH] Add print in console for model downloading when using Aria2 --- utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.py b/utils.py index 9a35c623..2db82610 100644 --- a/utils.py +++ b/utils.py @@ -177,6 +177,7 @@ class Send_to_socketio(object): def write(self, bar): time.sleep(0.01) try: + print(bar, end="\r") emit('from_server', {'cmd': 'model_load_status', 'data': bar.replace(" ", " ")}, broadcast=True) except: pass