Parcourir la source

Remove unnecessary ansi code in seperator

Cammy il y a 6 ans
Parent
commit
ca0572e341
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      pyinstalive/logger.py

+ 1 - 1
pyinstalive/logger.py

@@ -28,7 +28,7 @@ def supports_color():
 
 
 def log_seperator():
 def log_seperator():
 	try:
 	try:
-		print(sep + "\033[0m")
+		print(sep)
 		if settings.log_to_file == 'True':
 		if settings.log_to_file == 'True':
 			try:
 			try:
 				with open("pyinstalive{:s}.log".format("_" + settings.user_to_download if len(settings.user_to_download) > 0 else ".default"),"a+") as f:
 				with open("pyinstalive{:s}.log".format("_" + settings.user_to_download if len(settings.user_to_download) > 0 else ".default"),"a+") as f: