Skip to content

Commit 488603c

Browse files
committed
maestro_common: Fix fstring
Signed-off-by: Arisu Tachibana <arisu.tachibana@miraclelinux.com>
1 parent d774693 commit 488603c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

kcidev/libs/maestro_common.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,19 +160,19 @@ def maestro_node_result(node):
160160
if node["kind"] == "checkout":
161161
kci_msg_nonl(" branch checkout")
162162
else:
163-
kci_msg_nonl(f" {node["kind"]}: ")
163+
kci_msg_nonl(f" {node['kind']}: ")
164164

165165
if node["kind"] != "checkout":
166-
kci_msg_nonl(f"{node["name"]}")
166+
kci_msg_nonl(f"{node['name']}")
167167

168-
kci_msg(f" - node_id:{node["id"]} ({node["updated"]})")
168+
kci_msg(f" - node_id:{node['id']} ({node['updated']})")
169169

170170

171171
def maestro_watch_jobs(baseurl, token, treeid, job_filter, test):
172172
# we need to add to job_filter "checkout" node
173173
job_filter = list(job_filter)
174174
job_filter.append("checkout")
175-
kci_log(f"job_filter: {", ".join(job_filter)}")
175+
kci_log(f"job_filter: {', '.join(job_filter)}")
176176
previous_nodes = None
177177
running = False
178178

0 commit comments

Comments
 (0)