Files
zulip/scripts/lib/pythonrc.py
Anders Kaseorg cc30ed8ec7 actions: Delete zerver.lib.actions.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2022-04-14 17:14:38 -07:00

13 lines
386 B
Python

try:
from django.conf import settings # noqa: F401
from analytics.models import * # noqa: F401, F403
from zerver.models import * # noqa: F401, F403
except Exception:
import traceback
print("\nException importing Zulip core modules on startup!")
traceback.print_exc()
else:
print("\nSuccessfully imported Zulip settings, models, and actions functions.")