Jelajahi Sumber

Revert seperator symbol to hyphen

Cammy 7 tahun lalu
induk
melakukan
b1c29cdd59
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  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"))