Make config printing work

This commit is contained in:
Florian Bruhin 2014-02-27 18:50:27 +01:00
parent 6c6a827bab
commit e4cd92a293

View File

@ -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