Skip to content

Commit

Permalink
grub: T4516: correct a format string
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbaturin committed Mar 28, 2024
1 parent 889c1a8 commit 74e502c
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 74e502c

Please sign in to comment.