mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-25 09:20:23 +00:00
7 lines
176 B
Python
7 lines
176 B
Python
from django.utils.timezone import utc
|
|
|
|
|
|
def utc_tzinfo_factory(offset):
|
|
if offset != 0:
|
|
raise AssertionError("database connection isn't set to UTC")
|
|
return utc
|