/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/bedding.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:
25
25
from .lazy_import import lazy_import
26
26
lazy_import(globals(), """
27
27
from breezy import (
28
 
    errors,
29
28
    osutils,
30
29
    trace,
31
30
    win32utils,
32
31
    )
33
32
""")
 
33
from . import (
 
34
    errors,
 
35
    )
34
36
from .sixish import (
35
37
    PY3,
36
38
    )