Skip to content
Snippets Groups Projects
Verified Commit 55af9acd authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

settings.production: Use f-string for exception error message

parent aa38cc72
No related branches found
No related tags found
No related merge requests found
......@@ -30,23 +30,22 @@ DEBUG = False
config_file = os.environ.get("SWH_CONFIG_FILENAME")
if not config_file:
raise ValueError(
"Production: SWH_CONFIG_FILENAME must be set to the"
" configuration file needed!"
"Production: SWH_CONFIG_FILENAME must be set to the configuration file needed!"
)
if not os.path.exists(config_file):
raise ValueError(
"Production: configuration file %s does not exist!" % (config_file,)
f"Production: configuration file {config_file} does not exist!",
)
conf = config.load_named_config(config_file)
if not conf:
raise ValueError("Production: configuration %s does not exist." % (config_file,))
raise ValueError(f"Production: configuration {config_file} does not exist.")
for key in ("scheduler", "private", "authentication_provider"):
if not conf.get(key):
raise ValueError(
"Production: invalid configuration; missing %s config entry." % (key,)
f"Production: invalid configuration; missing {key} config entry."
)
ALLOWED_HOSTS += conf.get("allowed_hosts", [])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment