From 6339c805768314e57c39d23b2ac45438b9c3ce84 Mon Sep 17 00:00:00 2001 From: Daniel Large Date: Tue, 29 Oct 2024 11:01:46 -0500 Subject: [PATCH] Minor change to convert list object to string as model is expecting string. Testing --- nautobot_golden_config/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautobot_golden_config/jobs.py b/nautobot_golden_config/jobs.py index d1ccbf87..ab40a8a4 100644 --- a/nautobot_golden_config/jobs.py +++ b/nautobot_golden_config/jobs.py @@ -442,7 +442,7 @@ def _generate_config_plan_from_feature(self): continue if not all(isinstance(config_set, str) for config_set in config_sets): - config_set = config_sets + config_set = str(config_sets) else: config_set = "\n".join(config_sets) config_plan = ConfigPlan.objects.create(