Mongo removal: Remove the validate=True arg to obj.save()

all callers were forced to use validate=True anyway. So
remove this useless stuff.
This commit is contained in:
Elrond
2012-12-23 21:01:13 +01:00
parent 1eac751bd2
commit b39d1f2351
6 changed files with 9 additions and 10 deletions

View File

@@ -94,7 +94,7 @@ def post_entry(request):
entry.queued_task_id = task_id
# Save now so we have this data before kicking off processing
entry.save(validate=True)
entry.save()
if request.form.get('callback_url'):
metadata = request.db.ProcessingMetaData()