Skip to content

Commit 888a19f

Browse files
authored
Merge pull request #469 from rackerlabs/fix-f-string
fix: Diagnostic error on enroll: missing f in f-string
2 parents 3ceb496 + 48df18e commit 888a19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/understack-workflows/understack_workflows/bmc_hostname.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def bmc_set_hostname(bmc: Bmc, current_name: str, new_name: str):
1212
raise ValueError("Invalid input parameters")
1313

1414
if current_name == new_name:
15-
logger.info("BMC hostname is already set to {new_name}")
15+
logger.info(f"BMC hostname is already set to {new_name}")
1616
return
1717

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

0 commit comments

Comments
 (0)