Skip to content

Commit

Permalink
fixed issue in resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Mar 30, 2016
1 parent ab46bc0 commit a2b1750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quorum/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,7 @@ def _resolve(cls, name, value, *args, **kwargs):
# it is runs the evaluate method for each of the values to
# try to resolve them into the proper representation
is_iterable = type(value) in (list, tuple)
if is_iterable: return [cls._resolve(name, value) for value in value]
if is_iterable: return [cls._resolve(name, value, *args, **kwargs) for value in value]

# verifies if the map value recursive approach should be used
# for the element and if that's the case calls the proper method
Expand Down

0 comments on commit a2b1750

Please sign in to comment.