Skip to content

Commit

Permalink
Merge pull request #3203 from vyos/mergify/bp/sagitta/pr-3201
Browse files Browse the repository at this point in the history
grub: T4516: correct a format string (backport #3201)
  • Loading branch information
c-po authored Mar 28, 2024
2 parents 9bdd00b + c253afd commit 9e5af05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/vyos/system/grub.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def create_structure(root_dir: str = '') -> None:
if not root_dir:
root_dir = disk.find_persistence()

Path(f'{root_dir}/GRUB_DIR_VYOS_VERS').mkdir(parents=True, exist_ok=True)
Path(f'{root_dir}/{GRUB_DIR_VYOS_VERS}').mkdir(parents=True, exist_ok=True)


def set_console_type(console_type: str, root_dir: str = '') -> None:
Expand Down

0 comments on commit 9e5af05

Please sign in to comment.