mirror of
https://github.com/Rushilwiz/brancher.git
synced 2025-05-02 17:29:51 -04:00
8 lines
176 B
Python
8 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
|