Use devel version of LP API.

For consistency use development version of the LP API in the scripts
that query the Launchpad API.

Change-Id: I39b145684563738dd5615d863720ec364c4987c3
Reviewed-on: https://review.openstack.org/11508
Reviewed-by: linuxjedi <andrew@linuxjedi.co.uk>
Approved: Monty Taylor <mordred@inaugust.com>
Reviewed-by: Monty Taylor <mordred@inaugust.com>
Tested-by: Jenkins
This commit is contained in:
Clark Boylan 2012-08-16 14:10:45 -07:00 committed by Jenkins
parent 9038098310
commit b0e002d520
2 changed files with 4 additions and 2 deletions

View File

@ -47,7 +47,8 @@ for line in urllib.urlopen('http://wiki.openstack.org/Contributors?action=raw'):
launchpad = Launchpad.login_with('CLA Team Sync', LPNET_SERVICE_ROOT,
LP_CACHE_DIR,
credentials_file = LP_CREDENTIALS)
credentials_file = LP_CREDENTIALS,
version='devel')
lp_members = []

View File

@ -117,7 +117,8 @@ cur = conn.cursor()
launchpad = Launchpad.login_with('Gerrit User Sync', LPNET_SERVICE_ROOT,
GERRIT_CACHE_DIR,
credentials_file = GERRIT_CREDENTIALS)
credentials_file = GERRIT_CREDENTIALS,
version='devel')
def get_sub_teams(team, have_teams):
for sub_team in launchpad.people[team].sub_teams: