/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to brzlib/plugins/launchpad/lp_registration.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 14:47:52 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521144752-8o6jt0a6xat9g7lm
More renames; commands in output, environment variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
# for testing, do
36
36
'''
37
 
export BZR_LP_XMLRPC_URL=http://xmlrpc.staging.launchpad.net/bazaar/
 
37
export BRZ_LP_XMLRPC_URL=http://xmlrpc.staging.launchpad.net/bazaar/
38
38
'''
39
39
 
40
40
class InvalidLaunchpadInstance(errors.BzrError):
122
122
 
123
123
        This does not include the username/password credentials.
124
124
        """
125
 
        key = 'BZR_LP_XMLRPC_URL'
 
125
        key = 'BRZ_LP_XMLRPC_URL'
126
126
        if key in os.environ:
127
127
            return os.environ[key]
128
128
        elif self._lp_instance is not None: