Ver Fonte

Revert seperator symbol to hyphen

Cammy há 7 anos atrás
pai
commit
b1c29cdd59
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      pyinstalive/logger.py

+ 2 - 2
pyinstalive/logger.py

@@ -48,6 +48,6 @@ def log(string, color):
 
 def seperator(color):
 	if not supports_color():
-		print("=" * 70)
+		print("-" * 70)
 	else:
-		print('\033[1m' + colors(color) + ("=" * 70) + colors("ENDC"))
+		print('\033[1m' + colors(color) + ("-" * 70) + colors("ENDC"))