/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/plugins/hg/__init__.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:
21
21
 
22
22
from __future__ import absolute_import
23
23
 
24
 
from ... import version_info  # noqa: F401
25
 
 
26
24
from ... import (
27
25
    controldir,
28
26
    errors,
29
27
    )
30
28
 
 
29
import breezy
 
30
from breezy import version_info  # noqa: F401
 
31
 
31
32
 
32
33
class MercurialUnsupportedError(errors.UnsupportedFormatError):
33
34