Merge "Reference to unknown CONF in fakemode.py"

This commit is contained in:
Jenkins 2016-09-10 15:31:18 +00:00 committed by Gerrit Code Review
commit 835cbb8477

View File

@ -42,7 +42,7 @@ def main(conf):
start_server(conf)
else:
print("Starting server:%s" % pid)
pid_file = CONF.pid_file
pid_file = conf.pid_file
with open(pid_file, 'w') as f:
f.write(str(pid))
else: