1
0
Fork 0
mirror of synced 2024-07-03 13:30:28 +12:00
ArchiveBox/archivebox/monkey_patches.py

17 lines
442 B
Python
Raw Normal View History

2024-05-13 21:35:19 +12:00
__package__ = 'archivebox'
import django_stubs_ext
django_stubs_ext.monkeypatch()
# monkey patch django timezone to add back utc (it was removed in Django 5.0)
import datetime
from django.utils import timezone
timezone.utc = datetime.timezone.utc
# monkey patch django-signals-webhooks to change how it shows up in Admin UI
# from signal_webhooks.apps import DjangoSignalWebhooksConfig
# DjangoSignalWebhooksConfig.verbose_name = 'API'