From bc3fb8f3995867d174168fa24524344f3759469f 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 f2eb9e6..1d49d7e 100644 --- a/buildbot_nix/__init__.py +++ b/buildbot_nix/__init__.py @@ -105,7 +105,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__(