Remove unnecessary third argument from translate() calls

This commit is contained in:
sliptonic
2022-01-31 14:27:11 -06:00
parent a26933bf4c
commit 752d8cf964
6 changed files with 13 additions and 22 deletions

View File

@@ -426,7 +426,7 @@ def addToJob(obj, jobname=None):
if len(jobs) == 1:
job = jobs[0]
else:
PathLog.error(translate("Path", "Didn't find job %s") % jobname)
PathLog.error(translate("Path", "Didn't find job {}".format(jobname)))
return None
else:
jobs = GetJobs()