From 099ed5aee5d4ed6a69f5ec617f471c07a2e58df4 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 2 Feb 2015 18:00:51 +0100 Subject: [PATCH] Fixed silly mistake in setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2658cfd2cd..9136c20d3a 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ def get_scripts(): if os.name == "nt": # Windows with open(os.path.join("bin", "evennia.bat"), "w") as bat_file: - bat_file.write("@\"%s\" \"%s\" %%*" % (sys.executable, os.path.join("bin/python.py"))) + bat_file.write("@\"%s\" \"%s\" %%*" % (sys.executable, os.path.join("bin/evennia"))) execlist.append("bin/evennia.bat") else: # Linux, Mac