Skip to content

Commit

Permalink
changed build order
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 19, 2015
1 parent 03ae926 commit 43c7387
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 @@ -396,8 +396,8 @@ def wrap(cls, models, build = True, handler = None):
wrapping = []
for model in models:
_model = cls(model = model)
build and cls.build(_model.model, map = False)
handler and handler(_model.model)
build and cls.build(_model.model, map = False)
wrapping.append(_model)
if is_sequence: return wrapping
else: return wrapping[0]
Expand Down

0 comments on commit 43c7387

Please sign in to comment.