From c0287ac91a5521b608397ebbf24bf2a0a74b1de5 Mon Sep 17 00:00:00 2001 From: Eric Hansen Date: Mon, 17 Jul 2023 12:05:46 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Correct=20environment=20v?= =?UTF-8?q?ariable=20name=20for=20lstrip=5Fblocks=20option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/nautobot/nautobot-plugin-golden-config/issues/525 --- development/nautobot_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/nautobot_config.py b/development/nautobot_config.py index 7de719fb..c0a9cd16 100644 --- a/development/nautobot_config.py +++ b/development/nautobot_config.py @@ -175,7 +175,7 @@ "postprocessing_callables": os.environ.get("POSTPROCESSING_CALLABLES", []), "postprocessing_subscribed": os.environ.get("POSTPROCESSING_SUBSCRIBED", []), "jinja_env_trim_blocks": is_truthy(os.getenv("NAUTOBOT_JINJA_ENV_TRIM_BLOCKS", True)), - "jinja_env_lstrip_blocks": is_truthy(os.getenv("NAUTOBOT_JINJA_ENV_TRIM_BLOCKS", False)), + "jinja_env_lstrip_blocks": is_truthy(os.getenv("NAUTOBOT_JINJA_ENV_LSTRIP_BLOCKS", False)), # The platform_slug_map maps an arbitrary platform slug to its corresponding parser. # Use this if the platform slug names in your Nautobot instance don't correspond exactly # to the Nornir driver names ("arista_eos", "cisco_ios", etc.).