Browse Source

Switch slash in config template

Cammy 7 năm trước cách đây
mục cha
commit
d77da47b17
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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()