From e881b8e20d4b4a0d009a33846aa6b8e0881e64d2 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Mon, 15 Apr 2019 14:29:58 -0500 Subject: [PATCH] Drop references to git.openstack.org This updates extraction of governance data to use the new URL paths under opendev.org. Change-Id: I95e03e19b001e1ba57c59b4adcbfe9b29d03f9a2 Signed-off-by: Sean McGinnis --- openstack_governance/governance.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/openstack_governance/governance.py b/openstack_governance/governance.py index 744f26ed9..3d0dce433 100644 --- a/openstack_governance/governance.py +++ b/openstack_governance/governance.py @@ -10,8 +10,7 @@ # License for the specific language governing permissions and limitations # under the License. -"""Work with the governance repository. -""" +"""Work with the governance repository.""" import collections import logging @@ -23,7 +22,7 @@ from openstack_governance import _yamlutils import requests LOG = logging.getLogger(__name__) -REPO_URL_BASE = "http://git.openstack.org/cgit/openstack/governance/plain" +REPO_URL_BASE = "https://opendev.org/openstack/governance/raw/branch/master" def get_tags_for_deliverable(team_data, team, name):