lvsp_conn: remove unused var

This commit is contained in:
Luna 2019-03-04 03:20:34 -03:00
parent 0759a52046
commit 627d87b4a7
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ class LVSPConnection:
"""Try to start a websocket connection.""" """Try to start a websocket connection."""
try: try:
self.conn = await websockets.connect(f'wss://{self.hostname}') self.conn = await websockets.connect(f'wss://{self.hostname}')
except Exception as e: except Exception:
log.exception('failed to start lvsp conn to {}', self.hostname) log.exception('failed to start lvsp conn to {}', self.hostname)
async def run(self): async def run(self):