From 984f984cf0178bf3d6a8d32e03743312ace6dd02 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 25 Aug 2014 10:58:12 +0200 Subject: [PATCH] Fix lint. --- qutebrowser/commands/userscripts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/commands/userscripts.py b/qutebrowser/commands/userscripts.py index 193bdf498..a37df530c 100644 --- a/qutebrowser/commands/userscripts.py +++ b/qutebrowser/commands/userscripts.py @@ -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")