Skip to content

Commit

Permalink
More printout improvements
Browse files Browse the repository at this point in the history
Orxporter will only differentiate between 'partly' and 'fully' exported emoji in the output plan if there are partly cached emoji to begin with.
  • Loading branch information
dzuk-mutant committed Feb 13, 2020
1 parent 913ffed commit 5164fc6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions export.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5164fc6

Please sign in to comment.