mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
fix download log newlines
This commit is contained in:
parent
02145c7078
commit
b6ed84998d
1 changed files with 1 additions and 1 deletions
|
@ -855,7 +855,7 @@ def download_addon(client: HttpClient, id: int) -> Union[DownloadOk, DownloadErr
|
||||||
|
|
||||||
|
|
||||||
def download_log_to_html(log: List[DownloadLogEntry]) -> str:
|
def download_log_to_html(log: List[DownloadLogEntry]) -> str:
|
||||||
return "\n".join(map(describe_log_entry, log))
|
return "<br>".join(map(describe_log_entry, log))
|
||||||
|
|
||||||
|
|
||||||
def describe_log_entry(id_and_entry: DownloadLogEntry) -> str:
|
def describe_log_entry(id_and_entry: DownloadLogEntry) -> str:
|
||||||
|
|
Loading…
Reference in a new issue