From db307e253024e3d5c1d035b7dd45071fa81ff4f2 Mon Sep 17 00:00:00 2001 From: Flo Greistorfer Date: Thu, 27 Jun 2024 11:03:46 +0200 Subject: [PATCH] removed ascii --- generate_html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate_html.py b/generate_html.py index a609ea2..ee80222 100755 --- a/generate_html.py +++ b/generate_html.py @@ -265,12 +265,12 @@ def main(): gettotal(args.root) pbar.close() - pbar = tqdm(total=total + 1, desc="Generating html files", unit=" files", ascii="#") + pbar = tqdm(total=total + 1, desc="Generating html files", unit=" files") listfolder(args.root, _ROOTTITLE) pbar.close() with Pool(os.cpu_count()) as p: - for r in tqdm(p.imap_unordered(thumbnail_convert, thumbnails), total=len(thumbnails), desc="Generating thumbnails", unit=" files", ascii="#"): + for r in tqdm(p.imap_unordered(thumbnail_convert, thumbnails), total=len(thumbnails), desc="Generating thumbnails", unit=" files"): ...