Fixed config responce in client

This commit is contained in:
Artem30801
2020-01-07 17:24:15 +03:00
parent 04ee93fc8b
commit 0ccd801fc2

View File

@@ -216,8 +216,8 @@ def _command_config_write(*args, **kwargs):
@messaging.request_callback("config")
def _response_config(*args, **kwargs):
response = {"config": active_client.config.fulldict,
"configspec": dict(active_client.config.configspec)}
response = {"config": active_client.config.full_dict,
"configspec": dict(active_client.config.config.configspec)}
return response
@messaging.request_callback("id")