Don't change cwd in synctl

pull/291/head
Erik Johnston 2015-10-01 09:21:27 +01:00
parent 0ec78b360c
commit 0a4b7226fc
1 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@ def start(configfile):
print "Starting ...",
args = SYNAPSE
args.extend(["--daemonize", "-c", configfile])
cwd = os.path.dirname(os.path.abspath(__file__))
try:
subprocess.check_call(args, cwd=cwd)
subprocess.check_call(args)
print GREEN + "started" + NORMAL
except subprocess.CalledProcessError as e:
print (