~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/convertinv.py

  • Committer: Jelmer Vernooij
  • Date: 2011-01-14 00:58:16 UTC
  • mto: (5582.12.2 weave-plugin)
  • mto: This revision was merged to the branch mainline in revision 5718.
  • Revision ID: jelmer@samba.org-20110114005816-b3g5xigfiy20s29y
Fix imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
import bzrlib.branch
23
23
from bzrlib.weave import Weave
24
 
from bzrlib.weavefile import write_weave
25
24
from bzrlib.progress import ProgressBar
26
25
import tempfile
27
26
import hotshot, hotshot.stats
28
27
import sys
29
28
 
 
29
from bzrlib.plugins.weave_fmt.weavefile import write_weave
 
30
 
30
31
def convert():
31
32
    WEAVE_NAME = "inventory.weave"
32
33