From 05468196e354691ab23988c68bf8f8f23a8343ce Mon Sep 17 00:00:00 2001 From: jaskaranSM <37726998+jaskaranSM@users.noreply.github.com> Date: Mon, 20 Jan 2020 09:19:49 +0530 Subject: [PATCH] Fix Status Message --- bot/helper/ext_utils/bot_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot/helper/ext_utils/bot_utils.py b/bot/helper/ext_utils/bot_utils.py index 9f699c7..83121c2 100644 --- a/bot/helper/ext_utils/bot_utils.py +++ b/bot/helper/ext_utils/bot_utils.py @@ -90,7 +90,8 @@ def get_readable_message(): if download.status() != MirrorStatus.STATUS_ARCHIVING: msg += f"\n{get_progress_bar_string(download)} {download.progress()} of " \ f"{download.size()}" \ - f" at {download.speed()}, ETA: {download.eta()}\n\n" + f" at {download.speed()}, ETA: {download.eta()}" + msg += "\n\n" return msg