throw=True

This commit is contained in:
James Turk 2012-05-15 16:57:04 -04:00
parent 9182b966e3
commit c4b7597772

View File

@ -28,7 +28,7 @@ def main():
module, name = args.task.rsplit('.', 1)
task = getattr(__import__(module, fromlist=[name]), name)
for doc in docs:
task(doc['_id'])
task.apply((doc['_id'],), throw=True)
else:
for doc in docs: