Skip to content

Commit

Permalink
Pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mickeprag committed Nov 4, 2019
1 parent 9ec0ef2 commit 998da63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion live/src/tellduslive/base/ServerConnection.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _read(self):
hasMoreData = False
request = request + packet
except socket.error as socketException:
(err, errstr) = socketException.args
(err, __errstr) = socketException.args
if (err == errno.EAGAIN):
return None
return '' # is not alive
Expand Down

0 comments on commit 998da63

Please sign in to comment.