1
0
mirror of https://github.com/jumpserver/jumpserver.git synced 2025-05-02 21:26:24 +00:00

Update run server.py ()

Fix  for not callable error when  config.py not exists
This commit is contained in:
calmzhu 2018-02-25 20:09:15 +08:00 committed by 老广
parent eb18648a66
commit 5193ba2e39

View File

@ -13,7 +13,7 @@ from apps import __version__
try:
from config import config as CONFIG
except ImportError:
CONFIG = type('_', (), {'__getattr__': None})()
CONFIG = type('_', (), {'__getattr__': lambda *arg: None})()
os.environ["PYTHONIOENCODING"] = "UTF-8"