Skip to content

Commit

Permalink
Merge pull request #115 from hubblestack/develop
Browse files Browse the repository at this point in the history
Merge to master (prep for v2017.9.0 round two)
  • Loading branch information
basepi authored Sep 26, 2017
2 parents 2b8ce01 + d42b41d commit ff73f27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _beacons/pulsar.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def _dict_update(dest, upd, recursive_update=True, merge_lists=False):
dest_subkey = None
if isinstance(dest_subkey, collections.Mapping) \
and isinstance(val, collections.Mapping):
ret = update(dest_subkey, val, merge_lists=merge_lists)
ret = _dict_update(dest_subkey, val, merge_lists=merge_lists)
dest[key] = ret
elif isinstance(dest_subkey, list) \
and isinstance(val, list):
Expand Down
1 change: 1 addition & 0 deletions _modules/nova_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1911,6 +1911,7 @@ def _load_module(self, name):
data = yaml.safe_load(fh_)
except Exception as exc:
self.__missing_data__[name] = str(exc)
log.exception('Error loading yaml {0}'.format(fh_))
return False

self.__data__[name] = data
Expand Down
2 changes: 1 addition & 1 deletion _modules/win_pulsar.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def _dict_update(dest, upd, recursive_update=True, merge_lists=False):
dest_subkey = None
if isinstance(dest_subkey, collections.Mapping) \
and isinstance(val, collections.Mapping):
ret = update(dest_subkey, val, merge_lists=merge_lists)
ret = _dict_update(dest_subkey, val, merge_lists=merge_lists)
dest[key] = ret
elif isinstance(dest_subkey, list) \
and isinstance(val, list):
Expand Down

0 comments on commit ff73f27

Please sign in to comment.