Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richm committed Feb 15, 2024
1 parent 4f5ce20 commit 4e9d996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/library/find_unused_disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def run_module():
info = []
for path, attrs in get_disks(module).items():
if is_ignored(path):
info.append("Disk {} attrs {} is ignored".format(path, attrs))
info.append("Disk [%s] attrs [%s] is ignored" % (path, attrs))
continue

interface = module.params["with_interface"]
Expand Down

0 comments on commit 4e9d996

Please sign in to comment.