~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/lp_api.py

  • Committer: Aaron Bentley
  • Date: 2010-11-23 06:10:54 UTC
  • mto: This revision was merged to the branch mainline in revision 5549.
  • Revision ID: aaron@aaronbentley.com-20101123061054-nghff07moj3ptbgj
Switch lp-find-proposal to production API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    STAGING_SERVICE_ROOT,
49
49
    Launchpad,
50
50
    )
 
51
from launchpadlib.uris import (
 
52
    LPNET_SERVICE_ROOT,
 
53
    )
 
54
 
51
55
 
52
56
 
53
57
# Declare the minimum version of launchpadlib that we need in order to work.
76
80
 
77
81
 
78
82
LAUNCHPAD_API_URLS = {
79
 
    'production': 'https://api.launchpad.net/beta/',
 
83
    'production': LPNET_SERVICE_ROOT,
80
84
    'edge': EDGE_SERVICE_ROOT,
81
85
    'staging': STAGING_SERVICE_ROOT,
82
86
    'dev': 'https://api.launchpad.dev/beta/',