diff --git a/pylgtv/webos_client.py b/pylgtv/webos_client.py index 4385719..10fa50a 100644 --- a/pylgtv/webos_client.py +++ b/pylgtv/webos_client.py @@ -150,7 +150,7 @@ def _command(self, msg): websocket = yield from websockets.connect( "ws://{}:{}".format(self.ip, self.port), timeout=self.timeout_connect) except: - logger.error('command failed to connect to %s', "ws://{}:{}".format(self.ip, self.port)); + logger.debug('command failed to connect to %s', "ws://{}:{}".format(self.ip, self.port)); return False logger.debug('command websocket connected to %s', "ws://{}:{}".format(self.ip, self.port)); diff --git a/setup.py b/setup.py index 504feef..3ade7c2 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ package_data = {'pylgtv': ['handshake.json']}, install_requires = ['websockets', 'asyncio'], zip_safe = True, - version = '0.1.6', + version = '0.1.7', description = 'Library to control webOS based LG Tv devices', author = 'Dennis Karpienski', author_email = 'dennis@karpienski.de',