summaryrefslogtreecommitdiff
path: root/pygerrit
diff options
context:
space:
mode:
Diffstat (limited to 'pygerrit')
-rw-r--r--pygerrit/stream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygerrit/stream.py b/pygerrit/stream.py
index 1834d66..1705bf0 100644
--- a/pygerrit/stream.py
+++ b/pygerrit/stream.py
@@ -68,6 +68,6 @@ class GerritStream(Thread):
else:
data = stdout.readline()
self._gerrit.put_event(data)
- except Exception as e:
+ except Exception as e: # pylint: disable=W0703
self._error_event(repr(e))
self._stop.set()