experimental persistent mixin

- still contains changes in mouduls/params ...
This commit is contained in:
2021-06-04 12:19:04 +02:00
parent 229604439b
commit 246ab99e12
6 changed files with 483 additions and 308 deletions

View File

@ -260,7 +260,8 @@ class Server:
self.modules[modname] = modobj
except ConfigError as e:
errors.append('error creating module %s:' % modname)
for errtxt in e.args[0] if isinstance(e.args, list) else [e.args[0]]:
print('E', e.args)
for errtxt in e.args[0] if isinstance(e.args[0], list) else [e.args[0]]:
errors.append(' ' + errtxt)
except Exception:
failure_traceback = traceback.format_exc()