Skip to content

Commit cba7cae

Browse files
author
enryh
committed
🐛 format and border was also using non ASCII character
1 parent 05c4139 commit cba7cae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/vuegen/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def main():
4848
)
4949

5050
# Print completion message
51-
print_completion_message(report_type) # ! test if message is an issue on windows
51+
print_completion_message(report_type) # ! test if message is an issue on windows
5252

5353

5454
if __name__ == "__main__":

src/vuegen/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,10 +781,11 @@ def print_completion_message(report_type: str):
781781
"""
782782
try:
783783
print(msg)
784+
print(border)
784785
except UnicodeEncodeError:
785786
msg = strip_unicode(msg)
786787
print(msg)
787-
print(border)
788+
print('-' * 65)
788789

789790

790791
## REPORT FORMATTING

0 commit comments

Comments
 (0)