Skip to content
Snippets Groups Projects
Commit 8e262e25 authored by Erik Reid's avatar Erik Reid
Browse files

fixed a couple of sloppy typos/bugs

parent 9ce7b713
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ def create_app():
"environment variable SETTINGS_FILENAME' must be defined"
logging.info("initializing Flask with config from: %r"
% app.config["SETTINGS_FILENAME"])
% os.environ["SETTINGS_FILENAME"])
app.config.from_envvar("SETTINGS_FILENAME")
assert "INVENTORY_PROVIDER_CONFIG_FILENAME" in app.config, (
......
......@@ -69,7 +69,7 @@ class WorkerArgs(bootsteps.Step):
with open(config_filename) as f:
task_logger = logging.getLogger(constants.TASK_LOGGER_NAME)
task_logger.info(
"Initializing worker with config from: %r % config_filename)"
"Initializing worker with config from: %r % config_filename")
InventoryTask.config = config.load(f)
......
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