@@ -12,14 +12,14 @@ def format_line(content: str, width: int = 119) -> str:
1212
1313def get_initial_user_report (args ):
1414 figlet = Figlet (font = 'slant' )
15- ascii_logo_normal = figlet .renderText ('El Justicier' ).strip ("\n " ).rstrip (" " )
15+ ascii_logo_normal = figlet .renderText ('Justicier' ).strip ("\n " ).rstrip (" " )
1616 ascii_logo = ""
1717 for line in ascii_logo_normal .split ("\n " ):
1818 # Ensure the line is at least 120 characters long before slicing
1919 if len (line ) >= 120 :
20- line = "= " + line [:84 ] + " =" # Replace char at index 120
20+ line = "= " + line [:77 ] + " =" # Replace char at index 120
2121 else :
22- line = "= " + line .ljust (84 ) + " =" # Pad to 120 and then add "="
22+ line = "= " + line .ljust (77 ) + " =" # Pad to 120 and then add "="
2323 ascii_logo += line + "\n "
2424
2525 compact_something = any (args .compact .values ())
@@ -34,10 +34,10 @@ def get_initial_user_report(args):
3434 user_report += "=======================================================================================================================\n "
3535 user_report += "" + ascii_logo
3636 user_report += "=======================================================================================================================\n "
37- user_report += " :: El Justicier :: Version: " + version + "\n "
38- user_report += " Copyright © 2025-2025 Institut Català d'Investigació Química (ICIQ)\n "
37+ user_report += " :: Justicier :: Version: " + version + "\n "
38+ user_report += " Copyright © 2025-2025 Institut Català d'Investigació Química (ICIQ)\n "
3939 user_report += " This program is free software\n "
40- user_report += " Proudly distributed with ♥ under the GPLv3 license\n "
40+ user_report += " Proudly distributed with ♥ under the GPLv3 license\n "
4141 user_report += "***********************************************************************************************************************\n "
4242 user_report += "* Solution Arquitect and Maintainer: Aleix Mariné Tena (AleixMT), ICIQ, Data Steward *\n "
4343 user_report += "* Product Owner: Carles de la Cuadra, ICIQ, Assistant Financial Manager *\n "
0 commit comments