Fix Status Message

This commit is contained in:
jaskaranSM 2020-01-20 09:19:49 +05:30 committed by GitHub
parent 5c1a9c71b7
commit 05468196e3
Signed by untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,8 @@ def get_readable_message():
if download.status() != MirrorStatus.STATUS_ARCHIVING: if download.status() != MirrorStatus.STATUS_ARCHIVING:
msg += f"\n<code>{get_progress_bar_string(download)} {download.progress()}</code> of " \ msg += f"\n<code>{get_progress_bar_string(download)} {download.progress()}</code> of " \
f"{download.size()}" \ f"{download.size()}" \
f" at {download.speed()}, ETA: {download.eta()}\n\n" f" at {download.speed()}, ETA: {download.eta()}"
msg += "\n\n"
return msg return msg