Make config printing work
This commit is contained in:
parent
6c6a827bab
commit
e4cd92a293
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user