From 5164fc601f8fcb2e6f58e3cf78556ca2e34142cc Mon Sep 17 00:00:00 2001 From: Dzuk <32108484+dzuk-mutant@users.noreply.github.com> Date: Thu, 13 Feb 2020 19:47:25 +0000 Subject: [PATCH] More printout improvements Orxporter will only differentiate between 'partly' and 'fully' exported emoji in the output plan if there are partly cached emoji to begin with. --- export.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/export.py b/export.py index 03201cb..f918c62 100644 --- a/export.py +++ b/export.py @@ -52,8 +52,9 @@ def export(m, filtered_emoji, input_path, formats, path, src_size, if partial_cached_emoji_count: log.out(f"->[partial] {partial_cached_emoji_count} emoji will be partly reused from cache.", 34) - - log.out(f"->[export] {len(exporting_emoji) - partial_cached_emoji_count} emoji will be fully exported.", 34) + log.out(f"->[export] {len(exporting_emoji) - partial_cached_emoji_count} emoji will be fully exported.", 34) + else: + log.out(f"->[export] {len(exporting_emoji) - partial_cached_emoji_count} emoji will be exported.", 34) # If there's no emoji to export, tell the program to quit.