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 <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2019-04-15 14:29:58 -05:00
parent 5689e6e678
commit e881b8e20d
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
1 changed files with 2 additions and 3 deletions

View File

@ -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):