From 810aa4e1465ca4969d0c5efe40fa85f3e52d1f61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Wed, 2 Dec 2015 18:49:49 +0100 Subject: [PATCH] add a space after status indicators --- gallery_dl/output.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gallery_dl/output.py b/gallery_dl/output.py index b0d4b90c..dae59591 100644 --- a/gallery_dl/output.py +++ b/gallery_dl/output.py @@ -69,7 +69,7 @@ class TerminalPrinter(Printer): self.width = shutil.get_terminal_size().columns - OFFSET def start(self, path): - safeprint(self.shorten(" " + path), end="", flush=True) + safeprint(self.shorten(" " + path), end="", flush=True) def skip(self, path): safeprint(self.shorten(CHAR_SKIP + path)) @@ -116,14 +116,14 @@ class ColorPrinter(TerminalPrinter): if platform.system() == "Windows": ANSI = os.environ.get("TERM") == "ANSI" OFFSET = 1 - CHAR_SKIP = "#" - CHAR_ERROR = "!" - CHAR_SUCCESS = "*" + CHAR_SKIP = "# " + CHAR_ERROR = "! " + CHAR_SUCCESS = "* " CHAR_ELLIPSIES = "..." else: ANSI = True OFFSET = 0 - CHAR_SKIP = "#" - CHAR_ERROR = "❌" - CHAR_SUCCESS = "✔" + CHAR_SKIP = "# " + CHAR_ERROR = "❌ " + CHAR_SUCCESS = "✔ " CHAR_ELLIPSIES = "…"