Skip to content

Commit

Permalink
fix accidental line join
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanholen-hpe committed Nov 7, 2024
1 parent 0699c11 commit ad0496e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sat/cli/bootprep/input/session_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ def get_create_item_data(self):
# Fetch full boot sets
boot_sets = self.boot_set
# Render the rootfs_provider_passthrough using Jinja2
rendered_rootfs = self.jinja_env.from_string( boot_sets[boot_set_name]['rootfs_provider_passthrough']).render(self.data)
rendered_rootfs = self.jinja_env.from_string(
boot_sets[boot_set_name]['rootfs_provider_passthrough']).render(self.data)
api_data['boot_sets'][boot_set_name]['rootfs_provider_passthrough'] = rendered_rootfs
return api_data

Expand Down

0 comments on commit ad0496e

Please sign in to comment.