summaryrefslogtreecommitdiffstats
path: root/cobbler/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler/utils.py')
-rw-r--r--cobbler/utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/cobbler/utils.py b/cobbler/utils.py
index db55128..13503e5 100644
--- a/cobbler/utils.py
+++ b/cobbler/utils.py
@@ -237,6 +237,9 @@ def input_string_or_hash(options,delim=","):
Newer versions of cobbler allow dictionaries. This function is used to allow loading
of older value formats so new users of cobbler aren't broken in an upgrade.
"""
+ if options == "<<inherit>>":
+ options = {}
+
if options is None:
return (True, {})
elif type(options) == list: