/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/cmd_version_info.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:
23
23
lazy_import(globals(), """
24
24
from breezy import (
25
25
    branch,
26
 
    errors,
27
26
    version_info_formats,
28
27
    workingtree,
29
28
    )
30
29
from breezy.i18n import gettext
31
30
""")
32
31
 
 
32
from . import (
 
33
    errors,
 
34
    )
33
35
from .commands import Command
34
36
from .option import Option, RegistryOption
35
37
from .sixish import text_type