This is to allow temporary override of plugin configurations for simple
mode settings for example.
To use it, just call overridePostProcessPluginConfig(config) and provide
a configuration list for the plugins (print the one given to the
setPostProcessPluginconfig function and reuse it in your simple config)
This should put us one step forward with regards to issue #59
def setPostProcessPluginConfig(config):
profile.putProfileSetting('plugin_config', pickle.dumps(config))
+def overridePostProcessPluginConfig(config):
+ profile.setTempOverride('plugin_config', pickle.dumps(config))
+
def getPluginBasePaths():
ret = []
if platform.system() != "Windows":