From 83ac74f18f7eff04b733534264427dd6be6ae74d Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 19 Jul 2024 23:04:20 +0200 Subject: [PATCH] fix(gerrit): repourl was not formatted Signed-off-by: Raito Bezarius --- buildbot_nix/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot_nix/__init__.py b/buildbot_nix/__init__.py index 773df5e..eda8dea 100644 --- a/buildbot_nix/__init__.py +++ b/buildbot_nix/__init__.py @@ -130,7 +130,7 @@ class GerritConfig: """ Returns the prefix to build a repourl using that gerrit configuration. """ - return 'ssh://{self.username}@{self.domain}:{self.port}/' + return f'ssh://{self.username}@{self.domain}:{self.port}/' class BuildTrigger(steps.BuildStep): def __init__(