summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-12-18 02:10:12 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-12-18 02:10:12 +0100
commitb9d735ae8ea11a3d3ed768bc223050ab31788f41 (patch)
tree297997763a5eb5aa1fcece4dc8a4c5fc08c7cc86
parent8e6bcc7dc1a14c84397c55427f626c54ac61a7f8 (diff)
downloadbzr-fastimport-b9d735ae8ea11a3d3ed768bc223050ab31788f41.tar.gz
Use absolute_import.
-rw-r--r--__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py
index 989f392..01703ba 100644
--- a/__init__.py
+++ b/__init__.py
@@ -78,7 +78,9 @@ To report bugs or publish enhancements, visit the bzr-fastimport project
page on Launchpad, https://launchpad.net/bzr-fastimport.
"""
-from info import (
+from __future__ import absolute_import
+
+from bzrlib.plugins.fastimport.info import (
bzr_plugin_version as version_info,
)