From 865df5e4001813892765a0d1f1b8fb244f68fc99 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 7 Sep 2016 15:03:38 -0600 Subject: [PATCH] task.internal: use get_builder_project() Signed-off-by: Zack Cerza --- teuthology/task/internal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 3677961278..092a1cf3e3 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -15,7 +15,7 @@ from teuthology import lockstatus from teuthology import lock from teuthology import misc from teuthology import provision -from teuthology.packaging import GitbuilderProject +from teuthology.packaging import get_builder_project from teuthology.exceptions import VersionNotFoundError from teuthology.job_status import get_status, set_status from teuthology.config import config as teuth_config @@ -254,7 +254,7 @@ def check_packages(ctx, config): # We can only do this check if there are a defined sha1 and os_type # in the job config. if os_type and sha1: - package = GitbuilderProject("ceph", ctx.config) + package = get_builder_project()("ceph", ctx.config) template = "Checking packages for os_type,'{os}' flavor '{flav}' and" \ " ceph hash '{ver}'" log.info( -- 2.39.5