From 0a2fcddffc5b4b32ed772e02dd69afbe9734b0b1 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 28 Jul 2023 22:32:10 -0700 Subject: feat(anilist): allow media increment --- src/due/html/anime.py | 2 +- src/due/html/manga.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/due/html') diff --git a/src/due/html/anime.py b/src/due/html/anime.py index 1113965..dfbd741 100644 --- a/src/due/html/anime.py +++ b/src/due/html/anime.py @@ -40,7 +40,7 @@ def anime_to_html(releasing_outdated_anime): ) current_html.append( - f'
  • {title} {progress}{total_html} [{available}]
  • ' + f'
  • {title} {progress}{total_html} + [{available}]
  • ' ) current_html = sorted(current_html, key=seen) diff --git a/src/due/html/manga.py b/src/due/html/manga.py index dcf6aad..ea655ba 100644 --- a/src/due/html/manga.py +++ b/src/due/html/manga.py @@ -153,7 +153,7 @@ def manga_to_html(releasing_outdated_manga, show_missing): ) current_html.append( - f'
  • {manga["title"]["english"] or manga["title"]["romaji"] or title} {progress} [{available_link}]
  • ' + f'
  • {manga["title"]["english"] or manga["title"]["romaji"] or title} {progress} + [{available_link}]
  • ' ) joblib.Parallel(n_jobs=int(os.getenv("CONCURRENT_JOBS")) or 4, require="sharedmem")( -- cgit v1.2.3