mirror of https://github.com/zulip/zulip.git
13 lines
442 B
Python
13 lines
442 B
Python
try:
|
|
from django.conf import settings # noqa: F401
|
|
|
|
from analytics.models import * # noqa: F401, F403
|
|
from zerver.lib.actions 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.")
|