From 86fbbefb6eee016bb5d4fbe90d87e6c8b4768626 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Sun, 15 May 2016 09:16:53 -0500 Subject: [PATCH] Complete backport of pid cleanup fix for #1324 --- src/octoprint/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/__init__.py b/src/octoprint/__init__.py index 67baa4f7..73081ea4 100644 --- a/src/octoprint/__init__.py +++ b/src/octoprint/__init__.py @@ -24,7 +24,7 @@ class Main(Daemon): self._logConf = logConf def run(self): - octoprint = Server(self._configfile, self._basedir, self._host, self._port, self._debug, self._allowRoot) + octoprint = Server(self._configfile, self._basedir, self._host, self._port, self._debug, self._allowRoot, self._logConf, self) octoprint.run() def main():