diff options
| author | Ed Leafe <ed@leafe.com> | 2011-08-08 21:46:33 +0000 |
|---|---|---|
| committer | Ed Leafe <ed@leafe.com> | 2011-08-08 21:46:33 +0000 |
| commit | fee2812193258a1a4ade3116282d3f5c1cf1f58c (patch) | |
| tree | 1a6c8ac1cfd964356009a3d5011ad1317402019b /plugins | |
| parent | 3f23c79bbb556cf05f7cf8c839edb6398464e051 (diff) | |
| download | nova-fee2812193258a1a4ade3116282d3f5c1cf1f58c.tar.gz nova-fee2812193258a1a4ade3116282d3f5c1cf1f58c.tar.xz nova-fee2812193258a1a4ade3116282d3f5c1cf1f58c.zip | |
Fixed typo found in review
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/xenserver/xenapi/etc/xapi.d/plugins/xenhost | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/xenserver/xenapi/etc/xapi.d/plugins/xenhost b/plugins/xenserver/xenapi/etc/xapi.d/plugins/xenhost index 8bd376264..cd9694ce1 100755 --- a/plugins/xenserver/xenapi/etc/xapi.d/plugins/xenhost +++ b/plugins/xenserver/xenapi/etc/xapi.d/plugins/xenhost @@ -215,7 +215,8 @@ def host_data(self, arg_dict): # and convert the data types as needed. ret_dict = cleanup(parsed_data) # Add any config settings - ret_dict.update(_get_config_dict) + config = _get_config_dict() + ret_dict.update(config) return ret_dict |
