Created
June 7, 2019 21:33
-
-
Save goutomroy/21b4f7dd9123905788712f06dc0aa23f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try: | |
one_entry = Entry.objects.get(blog=2000) | |
except Entry.DoesNotExist: | |
# query did not match to any item. | |
pass | |
except Entry.MultipleObjectsReturned: | |
# query matched multiple items. | |
pass | |
else: | |
# query matched to just one item | |
print(one_entry) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment