1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-30 10:35:20 +00:00
seahub/shortcuts.py

13 lines
272 B
Python
Raw Normal View History

2012-08-08 12:16:00 +00:00
#!/usr/bin/env python
# encoding: utf-8
def get_first_object_or_none(queryset):
"""
A shortcut to obtain the first object of a queryset if it exists or None
otherwise.
"""
try:
return queryset[:1][0]
except IndexError:
return None