Skip to content

Commit

Permalink
Merge pull request #2101 from antgonza/patch-53_fix
Browse files Browse the repository at this point in the history
quick fix after test deploy
  • Loading branch information
josenavas committed Apr 5, 2017
2 parents a8946bf + 28e18fe commit a60cec2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qiita_db/support_files/patches/python_patches/53.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

studies = Study.get_by_status('private').union(
Study.get_by_status('public')).union(Study.get_by_status('sandbox'))
raw_data = [pt.artifact for s in studies for pt in s.prep_templates()]
raw_data = [pt.artifact for s in studies for pt in s.prep_templates()
if pt.artifact is not None]

for rd in raw_data:
# getting the most open visibility of all the children in the pipeline
Expand Down

0 comments on commit a60cec2

Please sign in to comment.