summaryrefslogtreecommitdiffstats
path: root/pyserver/api_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyserver/api_server.py')
-rw-r--r--pyserver/api_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyserver/api_server.py b/pyserver/api_server.py
index 736d521..7e8b7ef 100644
--- a/pyserver/api_server.py
+++ b/pyserver/api_server.py
@@ -516,7 +516,7 @@ class ApiServer(MultiThreadedHTTPServer):
#redirect logs to exeption
pcilib.redirect_logs_to_exeption()
#pass Pcipywrap to to server handler
- self.lib = pcilib.Pcilib(device, model)
+ self.lib = pcilib.pcilib(device, model)
def handler(*args):
PcilibServerHandler(self.lib, *args)
MultiThreadedHTTPServer.__init__(self, adress, handler)