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 05c4139 commit cba7caeCopy full SHA for cba7cae
src/vuegen/__main__.py
@@ -48,7 +48,7 @@ def main():
48
)
49
50
# Print completion message
51
- print_completion_message(report_type) # ! test if message is an issue on windows
+ print_completion_message(report_type) # ! test if message is an issue on windows
52
53
54
if __name__ == "__main__":
src/vuegen/utils.py
@@ -781,10 +781,11 @@ def print_completion_message(report_type: str):
781
"""
782
try:
783
print(msg)
784
+ print(border)
785
except UnicodeEncodeError:
786
msg = strip_unicode(msg)
787
- print(border)
788
+ print('-' * 65)
789
790
791
## REPORT FORMATTING
0 commit comments