Skip to content

Commit

Permalink
Use print properly
Browse files Browse the repository at this point in the history
Signed-off-by: mulhern <[email protected]>
  • Loading branch information
mulkieran committed May 5, 2022
1 parent f4ebc0e commit 7ccd775
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/stratis_cli/_actions/_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,14 +525,14 @@ def na_string(value, interp_option):
if stopped_pool is None:
raise StratisCliResourceNotFoundError("stop", this_uuid)

print("UUID: %s", this_uuid)
print("UUID: %s" % this_uuid)
print(
"Kernel Key Description: %s",
na_string(stopped_pool.get("key_description"), maybe_inconsistent),
"Kernel Key Description: %s"
% na_string(stopped_pool.get("key_description"), maybe_inconsistent),
)
print(
"Clevis Configuration: %",
na_string(stopped_pool.get("clevis_info"), maybe_inconsistent),
"Clevis Configuration: %s"
% na_string(stopped_pool.get("clevis_info"), maybe_inconsistent),
)

print("Devices:")
Expand Down

0 comments on commit 7ccd775

Please sign in to comment.