From 164b2a3eef9b06ccfd150eb3d29369d0bff30151 Mon Sep 17 00:00:00 2001 From: George Edward Bulmer Date: Sun, 11 Feb 2018 23:20:24 +0000 Subject: [PATCH] Fix a lengthy line --- qutebrowser/config/configexc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/config/configexc.py b/qutebrowser/config/configexc.py index 1444f79ab..7be1ccf2a 100644 --- a/qutebrowser/config/configexc.py +++ b/qutebrowser/config/configexc.py @@ -93,7 +93,8 @@ class ConfigErrorDesc: def __str__(self): return '{} - {}: {} '.format(self.text, - self.exception.__class__.__name__, self.exception) + self.exception.__class__.__name__, + self.exception) def with_text(self, text): """Get a new ConfigErrorDesc with the given text appended."""