doc/ improve settings comment

This commit is contained in:
tawoe 2022-05-02 11:55:46 +02:00
parent c3635889d2
commit befc0c453e

View File

@ -277,9 +277,11 @@ VERIFY = True if API_HOST.startswith("https") else False
# Local settings can override anything in here
try:
from apimanager.local_settings import * # noqa
from apimanager.local_settings import *
except ImportError:
pass
# EVERYTHING BELOW HERE WILL NOT BE OVERWRITTEN BY LOCALSETTINGS!
# DO NOT TRY TO DO SO YOU WILL BE IGNORED!
# Settings here might use parts overwritten in local settings
API_ROOT = API_HOST + API_BASE_PATH + API_VERSION