We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c724f commit 44e7a01Copy full SHA for 44e7a01
translate-messages/lib/log.py
@@ -7,11 +7,11 @@
7
terminal_width = 80
8
9
def final_summary(summary_dict):
10
- trunc('\nAll JSON files updated successfully!\n\n')
+ trunc('\nAll JSON files updated successfully!\n')
11
for name, lang_set in summary_dict.items():
12
if lang_set:
13
status = name.replace('_', ' ')
14
- print(f'Languages {status}: {len(lang_set)}')
+ print(f'\nLanguages {status}: {len(lang_set)}')
15
print(f"[ {', '.join(lang_set)} ]")
16
17
def overwrite_print(msg) : stdout.write('\r' + msg.ljust(terminal_width)[:terminal_width])
0 commit comments