From 9a405df56094012cbe64b8afe49b1e4f5a5a1b48 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 16 Mar 2015 23:32:49 +0100 Subject: [PATCH] Whoops. --- qutebrowser/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/app.py b/qutebrowser/app.py index e95917d92..f1dbc3ece 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -427,7 +427,7 @@ class Application(QApplication): signal.signal(signal.SIGINT, self.interrupt) signal.signal(signal.SIGTERM, self.interrupt) - if os.name == 'posxix' and hasattr(signal, 'set_wakeup_fd'): + if os.name == 'posix' and hasattr(signal, 'set_wakeup_fd'): import fcntl read_fd, write_fd = os.pipe() for fd in (read_fd, write_fd):