Skip to content

Commit

Permalink
include the suffix modified string in ascii art (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
fpreiss committed Nov 15, 2023
1 parent 1a6309c commit 614cff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axolotl/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def print_axolotl_text_art(suffix=None):
ascii_text = " axolotl"
if suffix:
ascii_text += f" x {suffix}"
ascii_art = text2art(" axolotl", font=font)
ascii_art = text2art(ascii_text, font=font)

if is_main_process():
print(ascii_art)
Expand Down

0 comments on commit 614cff4

Please sign in to comment.