Fix enclosure client broken by #1110

Syntax error, needed Configuration.get().get("enclosure")
instead of just Configuration.get("enclosure")
pull/1177/head
penrods 2017-10-27 14:40:11 -05:00 committed by Arron Atchison
parent 760f2fb182
commit d6b24af14c
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ class Enclosure(object):
self.ws.on("open", self.on_ws_open)
Configuration.init(self.ws)
self.config = Configuration.get("enclosure")
self.config = Configuration.get().get("enclosure")
self.__init_serial()
self.reader = EnclosureReader(self.serial, self.ws)