/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/fastimport/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2018-05-07 12:48:12 UTC
  • mfrom: (6953 work)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180507124812-gofxbzy2bmcrucc3
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
        from ...errors import DependencyNotPresent
68
68
        raise DependencyNotPresent("fastimport",
69
69
            "fastimport requires the fastimport python module")
 
70
    if fastimport.__version__ < (0, 9, 8):
 
71
        from ...errors import DependencyNotPresent
 
72
        raise DependencyNotPresent("fastimport",
 
73
            "fastimport requires at least version 0.9.8 of the "
 
74
            "fastimport python module")
70
75
 
71
76
 
72
77
def test_suite():