From e4cd92a293aa497456f7778140bf9a16f09e78c9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 27 Feb 2014 18:50:27 +0100 Subject: [PATCH] Make config printing work --- qutebrowser/config/templates.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/config/templates.py b/qutebrowser/config/templates.py index 71e3c7006..815a31b89 100644 --- a/qutebrowser/config/templates.py +++ b/qutebrowser/config/templates.py @@ -55,7 +55,8 @@ class SettingValue: if self.rawvalue is not None: val = self.rawvalue else: - val = self.default + val = (self.default_conf if self.default_conf is not None + else self.default) return val @property