From 9397cc74c1cd175d6a0ff08384290d8235fde050 Mon Sep 17 00:00:00 2001 From: George Edward Bulmer Date: Mon, 12 Feb 2018 14:24:53 +0000 Subject: [PATCH] Pylint indentation fix --- qutebrowser/config/configexc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/config/configexc.py b/qutebrowser/config/configexc.py index 2c0e5a58f..2067878b9 100644 --- a/qutebrowser/config/configexc.py +++ b/qutebrowser/config/configexc.py @@ -94,8 +94,8 @@ class ConfigErrorDesc: def __str__(self): if self.traceback: return '{} - {}: {}'.format(self.text, - self.exception.__class__.__name__, - self.exception) + self.exception.__class__.__name__, + self.exception) return '{}: {}'.format(self.text, self.exception) def with_text(self, text):