From: Robin Wittler Date: Tue, 9 Aug 2011 13:26:23 +0000 (+0200) Subject: fix bug for wrong dput match object X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=09ec991e4df8578a432be6032cd2131d55df58ba;p=profitbricks%2Fjenkins-build-scripts.git fix bug for wrong dput match object --- 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'