[Fixed]-Django 1.10 get individual objects out of query

1👍

✅

You’re doing some bizarre unnecessary things in your loop. user is already the relevant instance of EmailSubscriber; it already has first_name and email attributes. You don’t need to set them, you just use them.

Leave a comment