~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Aaron Bentley
  • Date: 2008-10-16 18:35:19 UTC
  • mto: This revision was merged to the branch mainline in revision 3783.
  • Revision ID: aaron@aaronbentley.com-20081016183519-llt3cr4n24ymrlrh
Update docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
 
44
44
 
45
45
def get_lp_login(_config=None):
46
 
    """Return the user's Launchpad username"""
 
46
    """Return the user's Launchpad username.
 
47
 
 
48
    :raises: MismatchedUsername if authentication.conf and bazaar.conf
 
49
        disagree about username.
 
50
    """
47
51
    if _config is None:
48
52
        _config = GlobalConfig()
49
53