Skip to content

Instantly share code, notes, and snippets.

@wiesson
Last active November 30, 2016 20:42
Show Gist options
  • Save wiesson/73d71bd945adbea7d1ee8dac52e2e344 to your computer and use it in GitHub Desktop.
Save wiesson/73d71bd945adbea7d1ee8dac52e2e344 to your computer and use it in GitHub Desktop.
try:
vote_object = Vote(entry=entry, question=question, user=user, value=vote_result)
except IntegrityError:
vote_object = Vote.objects.get(entry=entry, question=question, user=user)
vote_object.value = vote_result
vote_object.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment