~ubuntu-branches/ubuntu/natty/bzr-fastimport/natty

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2011-04-04 13:36:36 UTC
  • mfrom: (1.1.9 upstream) (0.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110404133636-pyfjkipacsklxyic
Tags: 0.10.0+bzr311-1
* Suggest python-subvertpy, which includes a Subversion fast exporter.
* New upstream snapshot.
* Suggest monotone, which comes with a fast exporter.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008 Canonical Ltd
 
1
# Copyright (C) 2008-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
79
79
page on Launchpad, https://launchpad.net/bzr-fastimport.
80
80
"""
81
81
 
82
 
version_info = (0, 10, 0, 'dev', 0)
 
82
from info import (
 
83
    bzr_plugin_version as version_info,
 
84
    )
83
85
 
84
86
from bzrlib.commands import plugin_cmds
85
87
 
91
93
    except ImportError, e:
92
94
        from bzrlib.errors import DependencyNotPresent
93
95
        raise DependencyNotPresent("fastimport",
94
 
            "bzr-fastimport requires the fasimport python module")
 
96
            "bzr-fastimport requires the fastimport python module")
95
97
 
96
98
 
97
99
def test_suite():