Explorar el Código

Remove unnecessary ansi code in seperator

Cammy hace 6 años
padre
commit
ca0572e341
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      pyinstalive/logger.py

+ 1 - 1
pyinstalive/logger.py

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