Skip to content

Commit

Permalink
Merge pull request #145 from desultory/dev
Browse files Browse the repository at this point in the history
pretty print luks config if it's already set
  • Loading branch information
desultory authored Dec 22, 2024
2 parents 3796483 + a3b9d48 commit 0c73b0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ugrd/fs/mounts.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "desultory"
__version__ = "5.7.1"
__version__ = "5.7.2"

from pathlib import Path
from typing import Union
Expand Down Expand Up @@ -496,7 +496,7 @@ def autodetect_luks(self, mount_loc, dm_num, blkid_info) -> None:
):
self.logger.warning(
"Skipping LUKS autodetection, cryptsetup config already set: %s"
% self["cryptsetup"][self["_vblk_info"][dm_num]["name"]]
% pretty_print(self["cryptsetup"][self["_vblk_info"][dm_num]["name"]])
)
return

Expand Down

0 comments on commit 0c73b0d

Please sign in to comment.