From 16b7a79573009957297d391488b2264b67be4e89 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 8 Feb 2015 18:01:59 +0100 Subject: [PATCH] Remove setting of cwd() for unix install. Testing suggests this is not necessary on Linux/Unix. Windows cwd() seems to be necessary for -e installs (but maybe remove that too later). Resolves #650. --- bin/unix/evennia | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/unix/evennia b/bin/unix/evennia index a4a86b143..fbb3f9a73 100755 --- a/bin/unix/evennia +++ b/bin/unix/evennia @@ -6,9 +6,5 @@ This is copied directly into the python bin directory and makes the 'evennia' program available on $PATH. """ -import os, sys - -sys.path.insert(0, os.path.abspath(os.getcwd())) - from evennia.server.evennia_launcher import main main()