summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/vyos/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/config.py b/python/vyos/config.py
index 0bbfece6e..4ebb68a09 100644
--- a/python/vyos/config.py
+++ b/python/vyos/config.py
@@ -300,7 +300,7 @@ class Config(object):
config_tree = vyos.configtree.ConfigTree(res)
config_dict = json.loads(config_tree.to_json())
config_dict = vyos.util.get_sub_dict(config_dict, self._make_path(path))
- if get_first_key:
+ if get_first_key and path and config_dict:
tmp = next(iter(config_dict.values()))
if not isinstance(tmp, dict):
raise TypeError("Data under node is not of type dict")