Fix lint.

This commit is contained in:
Florian Bruhin 2014-08-25 10:58:12 +02:00
parent 012482ce10
commit 984f984cf0

View File

@ -78,8 +78,8 @@ class _BlockingFIFOReader(QObject):
# We also use os.open and os.fdopen rather than built-in open so we can
# add O_NONBLOCK.
fd = os.open(self.filepath, os.O_RDWR |
os.O_NONBLOCK,
encoding='utf-8') # pylint: disable=no-member
os.O_NONBLOCK, # pylint: disable=no-member
encoding='utf-8')
self.fifo = os.fdopen(fd, 'r')
while True:
logger.debug("thread loop")