From d1d6c146e0d88cab619c016e0ae9f57afdbb095d Mon Sep 17 00:00:00 2001 From: Kendall Nelson Date: Tue, 3 Dec 2019 14:30:06 -0800 Subject: [PATCH] Fix get_series_data A change merged in releases moved the series_data to a new directory. Change-Id: I60c70c25268af323dd3749cdb93792f53132e31e --- openstack_election/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openstack_election/utils.py b/openstack_election/utils.py index 9129e55f..1e0b952a 100644 --- a/openstack_election/utils.py +++ b/openstack_election/utils.py @@ -102,7 +102,8 @@ def get_from_git(project, obj, params={}, verbose=0): def get_series_data(): return get_from_git('openstack/releases', - 'branch/master/deliverables/series_status.yaml') + 'branch/master/data/series_status.yaml', + verbose=99) def get_schedule_data(series):