obs: git.py: fix f-string

Change-Id: Iaaedf019012d77e4a385054532d1d10659ef8e76
This commit is contained in:
Oliver Smith 2023-02-08 16:25:22 +01:00
parent 6dde3dcd38
commit 7f0060ae70
1 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,8 @@ def get_head_remote(project, branch):
ret = ls_remote.output.split("\t")[0]
if not ret:
lib.exit_error_cmd(ls_remote, f"failed to find head commit for"
"{project} in output")
lib.exit_error_cmd(ls_remote, "failed to find head commit for"
f" {project} in output")
return ret