소스 검색

Revert seperator symbol to hyphen

Cammy 7 년 전
부모
커밋
b1c29cdd59
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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"))