From 09ec991e4df8578a432be6032cd2131d55df58ba Mon Sep 17 00:00:00 2001 From: Robin Wittler Date: Tue, 9 Aug 2011 15:26:23 +0200 Subject: [PATCH] fix bug for wrong dput match object --- testgit_build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testgit_build.py b/testgit_build.py index 65a03a3..22d678b 100755 --- a/testgit_build.py +++ b/testgit_build.py @@ -82,12 +82,12 @@ if not DPUT_URI: %(GIT_REPO_PATH) ) DPUT_OPTIONS = { - 'fqdn': DPUT_URI.get('url'), + 'fqdn': DPUT_URI.groupdict().get('url'), 'method': 'scp', 'login': 'jenkins', 'incoming': '/srv/debian-repository/incoming', 'allow_unsigned_uploads': 0 -} + } DPUT_CF = os.path.join(GIT_TARGET_WORKSPACE, 'dput.cf') log_format = '%(asctime)s %(name)s[%(process)d] %(levelname)s: %(message)s' -- 2.39.5