Skip to content

Commit

Permalink
Merge pull request #469 from rackerlabs/fix-f-string
Browse files Browse the repository at this point in the history
fix: Diagnostic error on enroll: missing f in f-string
  • Loading branch information
skrobul authored Nov 13, 2024
2 parents 3ceb496 + 48df18e commit 888a19f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def bmc_set_hostname(bmc: Bmc, current_name: str, new_name: str):
raise ValueError("Invalid input parameters")

if current_name == new_name:
logger.info("BMC hostname is already set to {new_name}")
logger.info(f"BMC hostname is already set to {new_name}")
return

logger.info(f"Changing BMC hostname from {current_name} to {new_name}")
Expand Down

0 comments on commit 888a19f

Please sign in to comment.