Skip to content

Commit

Permalink
fixed: query commands in eventghost. fixes #160
Browse files Browse the repository at this point in the history
  • Loading branch information
opdenkamp committed Dec 2, 2015
1 parent dff0cc8 commit 851d77b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EventGhost/__init__.py
Expand Up @@ -47,7 +47,7 @@
eg.RegisterPlugin(
name = 'Pulse-Eight CEC adapter',
author = 'Lars Op den Kamp',
version = '0.2',
version = '0.3',
kind = 'remote',
guid = '{fd322eea-c897-470c-bef7-77bf15c52db4}',
url = 'http://libcec.pulse-eight.com/',
Expand Down Expand Up @@ -281,7 +281,7 @@ class QueryParamLogicalAddress(eg.ActionClass):
selectedValue = 0

def __call__(self, value = "cec.CECDEVICE_UNKNOWN"):
return self.plugin.command(self.value.format(value))
return self.plugin.query(self.value.format(value))

def Configure(self, value = "cec.CECDEVICE_UNKNOWN"):
self.names = self.plugin.logicalAddressNames
Expand Down

0 comments on commit 851d77b

Please sign in to comment.