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

Fix import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import stat
22
22
 
23
23
from bzrlib import (
24
 
    bencode,
25
24
    errors,
26
25
    foreign,
27
26
    osutils,
28
27
    trace,
29
28
    urlutils,
30
29
    )
 
30
try:
 
31
    from bzrlib import bencode
 
32
except ImportError:
 
33
    from bzrlib.util import bencode
31
34
from bzrlib.inventory import (
32
35
    ROOT_ID,
33
36
    )