Skip to content

Commit

Permalink
Merge 4e54031 into 46d63f1
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgathuku committed Nov 29, 2016
2 parents 46d63f1 + 4e54031 commit 00307e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -134,7 +134,7 @@ You know what sucks? Kicking off a long running data ingestion/processing task o
import preflyt
ok, results = preflyt.check(settings.CHECKS)
if not ok:
print([result in results if not result["success"]])
print([result for result in results if not result["success"]])
sys.exit(1)
Now all the checks you're performing are defined in configuration, and no boilerplate!
Expand Down

0 comments on commit 00307e3

Please sign in to comment.