Update URL links to opendev.org locations

Some links still pointed to out-of-date openstack.org URLs. This updates
references to point to the current opendev.org locations.

Change-Id: I03a006948bf3f8b056cc7787c5fcda51aa9373fb
This commit is contained in:
wangfaxin 2019-12-18 14:36:03 +08:00 committed by Sean McGinnis
parent c53796b31a
commit 04a4ee7ffb
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ reviewstats
Utility scripts for generating stats about OpenStack development.
* Free software: Apache license
* Documentation: http://docs.openstack.org/developer/reviewstats
* Documentation: https://docs.openstack.org/reviewstats/latest/
Features
--------

View File

@ -34,7 +34,7 @@ import requests.auth
LOG = logging.getLogger(__name__)
PROJECTS_YAML = ('http://git.openstack.org/cgit/openstack/governance/plain/'
PROJECTS_YAML = ('https://opendev.org/openstack/governance/raw/branch/master/'
'reference/projects.yaml')
@ -141,7 +141,7 @@ def projects_q(project):
:rtype: str
.. _Searching Changes:
https://review.openstack.org/Documentation/user-search.html
https://review.opendev.org/Documentation/user-search.html
"""
return ('('
+ ' OR '.join(['project:' + p for p in project['subprojects']])
@ -149,7 +149,7 @@ def projects_q(project):
def get_changes(projects, ssh_user, ssh_key, only_open=False, stable='',
server='review.openstack.org'):
server='review.opendev.org'):
"""Get the changesets data list.
:param projects: List of gerrit project names.