/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 breezy/foreign.py

  • Committer: Jelmer Vernooij
  • Date: 2020-01-11 17:41:33 UTC
  • mto: This revision was merged to the branch mainline in revision 7440.
  • Revision ID: jelmer@jelmer.uk-20200111174133-ob2p0twwsmvw5ut7
Don't lazy-import errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from .lazy_import import lazy_import
28
28
lazy_import(globals(), """
29
29
from breezy import (
30
 
    errors,
31
30
    registry,
32
31
    )
33
32
""")
 
33
from . import (
 
34
    errors,
 
35
    )
34
36
 
35
37
 
36
38
class VcsMapping(object):