mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-09 19:19:15 +00:00
implement user input for #318
This commit is contained in:
@@ -206,10 +206,11 @@ class CfgAggregator:
|
||||
# parsing
|
||||
########################################################
|
||||
|
||||
def _load(self):
|
||||
def _load(self, reloading=False):
|
||||
"""load lower level config"""
|
||||
self.cfgyaml = CfgYaml(self.path,
|
||||
self.profile_key,
|
||||
reloading=reloading,
|
||||
debug=self.debug)
|
||||
|
||||
# settings
|
||||
@@ -361,7 +362,7 @@ class CfgAggregator:
|
||||
self.log.dbg('reloading config')
|
||||
olddebug = self.debug
|
||||
self.debug = False
|
||||
self._load()
|
||||
self._load(reloading=True)
|
||||
self.debug = olddebug
|
||||
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user