From 5c37d4a19de9f4bd9e2db77c8b9fcdd4c4e9c5fd Mon Sep 17 00:00:00 2001 From: Peter Vilim Date: Tue, 6 Jan 2015 04:14:41 -0600 Subject: [PATCH] fix line lengths --- qutebrowser/config/configtypes.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qutebrowser/config/configtypes.py b/qutebrowser/config/configtypes.py index 1e27b1082..d74aa6a0a 100644 --- a/qutebrowser/config/configtypes.py +++ b/qutebrowser/config/configtypes.py @@ -1233,8 +1233,8 @@ class ConfirmQuit(List): valid_values = ValidValues(('always', "Always show a confirmation."), ('multiple-tabs', "Show a confirmation if " "multiple tabs are opened."), - ('downloads', "show a confirmation if downloads " - "are running"), + ('downloads', "Show a confirmation if " + "downloads are running"), ('never', "Never show a confirmation.")) # Values that can be combined with commas combinable_values = ('multiple-tabs', 'downloads') @@ -1243,7 +1243,8 @@ class ConfirmQuit(List): values = self.transform(value) # Never can't be set with other options if 'never' in values and len(values) > 1: - raise configexc.ValidationError(value, "List cannot contain never!") + raise configexc.ValidationError( + value, "List cannot contain never!") # Always can't be set with other options elif 'always' in values and len(values) > 1: raise configexc.ValidationError(