mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
5 lines
200 B
Python
5 lines
200 B
Python
import sys
|
|
if sys.prefix != '/var/lib/awx/venv/tower':
|
|
raise RuntimeError('Tower virtualenv not activated. Check WSGIPythonHome in Apache configuration.')
|
|
from awx.wsgi import application # NOQA
|