~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/netrc_credential_store/__init__.py

(vila) Fix bzrlib.tests.test_gpg.TestVerify.test_verify_revoked_signature
 with recent versions of gpg. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2008-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
from __future__ import absolute_import
 
18
 
17
19
__doc__ = """Use ~/.netrc as a credential store for authentication.conf."""
18
20
 
19
21
# Since we are a built-in plugin we share the bzrlib version
25
27
    )
26
28
 
27
29
lazy_import.lazy_import(globals(), """
28
 
    import errno
29
 
    import netrc
 
30
import errno
 
31
import netrc
30
32
 
31
 
    from bzrlib import (
32
 
        errors,
33
 
        )
 
33
from bzrlib import (
 
34
    errors,
 
35
    )
34
36
""")
35
37
 
36
38