Skip to content

Commit

Permalink
Fix persistent_archive's QueriedInputPath
Browse files Browse the repository at this point in the history
A typo made it ignore the conditions altogether.
  • Loading branch information
remram44 committed Mar 21, 2017
1 parent 512130c commit 687e64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vistrails/packages/persistent_archive/queriedinput.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def compute(self):
# Do the query
queries = self.get_input_list('query')
conditions = {}
for c in conditions:
for c in queries:
conditions.update(c.conditions)

file_store = get_default_store()
Expand Down

0 comments on commit 687e64b

Please sign in to comment.