Skip to content

Commit

Permalink
Minor change to convert list object to string as model is expecting s…
Browse files Browse the repository at this point in the history
…tring. Testing
  • Loading branch information
emdeefive committed Oct 29, 2024
1 parent 8febe83 commit 6339c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nautobot_golden_config/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 6339c80

Please sign in to comment.