From 6c41c963a828755590ae0aaac06f3781a5c3109b Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Sun, 20 Oct 2013 23:07:16 +0200 Subject: [PATCH] added core to jsonbackend and removed unneeded import --- bin/linspector | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/linspector b/bin/linspector index f2939eb..e8e13ae 100755 --- a/bin/linspector +++ b/bin/linspector @@ -28,7 +28,6 @@ import logging import logging.handlers import os import os.path as path -import threading from linspector.core.interface import LinspectorInterface from linspector.config.parser import FullConfigParser @@ -128,7 +127,7 @@ def main(): interface = LinspectorInterface(jobs, scheduler, linConf) if core["jsonrpc_backend"]: - jsonrpc = JsonrpcBackend(interface) + jsonrpc = JsonrpcBackend(interface, core) jsonrpc.daemon = True jsonrpc.start()