From 430ef5c9358a5283af671116ee35d54678d18af9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 4 Nov 2014 20:13:31 +0100 Subject: [PATCH] Whitespace cleanup --- qutebrowser/utils/split.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/utils/split.py b/qutebrowser/utils/split.py index 72d73857b..a4961dd4a 100644 --- a/qutebrowser/utils/split.py +++ b/qutebrowser/utils/split.py @@ -94,8 +94,8 @@ class ShellLexer: raise ValueError("No escaped character") # In posix shells, only the quote itself or the escape # character may be escaped within quotes. - if escapedstate in self.quotes and \ - nextchar != self.state and nextchar != escapedstate: + if (escapedstate in self.quotes and nextchar != self.state and + nextchar != escapedstate): self.token = self.token + self.state self.token = self.token + nextchar self.state = escapedstate