From a75b9951985171b8daa41df40f5f681d3b136e52 Mon Sep 17 00:00:00 2001 From: Steven W <111259311+DistantVoyager@users.noreply.github.com> Date: Tue, 9 Jan 2024 09:11:34 -0500 Subject: [PATCH] Fixed help text typo (#693) Co-authored-by: Ken Celenza --- nautobot_golden_config/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautobot_golden_config/models.py b/nautobot_golden_config/models.py index 62023a74..e9ccd9b6 100644 --- a/nautobot_golden_config/models.py +++ b/nautobot_golden_config/models.py @@ -488,7 +488,7 @@ class GoldenConfigSetting(PrimaryModel): # pylint: disable=too-many-ancestors max_length=255, blank=True, verbose_name="Intended Path in Jinja Template Form", - help_text="The Jinja path representation of where the generated file will be places. e.g. `{{obj.location.name|slugify}}/{{obj.name}}.cfg`", + help_text="The Jinja path representation of where the generated file will be placed. e.g. `{{obj.location.name|slugify}}/{{obj.name}}.cfg`", ) jinja_repository = models.ForeignKey( to="extras.GitRepository",