From 9a821aea6a29565a1a385422c8c26e172c93aefa Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 21 Sep 2016 16:11:28 -0600 Subject: [PATCH] Fix typo in GitbuilderProject._get_uri_reference() Signed-off-by: Zack Cerza --- teuthology/packaging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/packaging.py b/teuthology/packaging.py index 1831918afb..239de6c44d 100644 --- a/teuthology/packaging.py +++ b/teuthology/packaging.py @@ -672,7 +672,7 @@ class GitbuilderProject(object): log.info('%s: %s' % (n, v)) if ref: - uri = 'ref'/ + ref + uri = 'ref/' + ref warn('ref') elif tag: uri = 'ref/' + tag -- 2.39.5