モジュール設定ファイルを作成しようとしています。
これが機能するのはなぜですか:
project/
settings.py
other.py
settings.py のこの行で
config_module = __import__('other', globals(), locals())
以下は ImportError を発生させますが、
project/
settings.py
config/
other.py
settings.py で次の行を使用します。
config_module = __import__('config.other', globals(), locals())