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

Import dulwich from subdir if it's not installed on the system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
"""A GIT branch and repository format implementation for bzr."""
20
20
 
21
 
import dulwich as git
 
21
try:
 
22
    import dulwich as git
 
23
except ImportError:
 
24
    import os, sys
 
25
    sys.path.insert(0, os.path.join(os.path.dirname(__file__), "dulwich"))
 
26
    import dulwich as git
22
27
from bzrlib import bzrdir
23
28
from bzrlib.foreign import ForeignVcs, VcsMappingRegistry, foreign_vcs_registry
24
29
from bzrlib.plugins.git.dir import GitBzrDirFormat