Another patch related to the #2440

This commit is contained in:
Miroslav Stampar
2017-03-17 09:43:45 +01:00
parent e506a390db
commit 1bc583d358
3 changed files with 5 additions and 4 deletions

View File

@@ -614,7 +614,8 @@ def paramToDict(place, parameters=None):
candidates = OrderedDict()
def walk(head, current=None):
current = current or head
if current is None:
current = head
if isListLike(current):
for _ in current:
walk(head, _)