Quellcode durchsuchen

Switch slash in config template

Cammy vor 7 Jahren
Ursprung
Commit
d77da47b17
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      pyinstalive/initialize.py

+ 1 - 1
pyinstalive/initialize.py

@@ -41,7 +41,7 @@ def run():
 	else:
 		logger.log("[W] Could not find configuration file, creating a default one ...", "YELLOW")
 		try:
-			config_template = "[pyinstalive]\nusername = johndoe\npassword = grapefruits\nsave_path = \\\nshow_cookie_expiry = true"
+			config_template = "[pyinstalive]\nusername = johndoe\npassword = grapefruits\nsave_path = /\nshow_cookie_expiry = true"
 			config_file = open("pyinstalive.ini", "w")
 			config_file.write(config_template)
 			config_file.close()