~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/convertfile.py

  • Committer: Jelmer Vernooij
  • Date: 2011-01-14 00:36:56 UTC
  • mto: (5582.12.2 weave-plugin)
  • mto: This revision was merged to the branch mainline in revision 5718.
  • Revision ID: jelmer@samba.org-20110114003656-0enxoqf6lc0yt3d6
Move bzrlib.weavefile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import sys
23
23
import bzrlib.branch
24
24
from bzrlib.weave import Weave
25
 
from bzrlib.weavefile import write_weave
26
25
 
27
26
import hotshot
28
27
import tempfile
29
28
 
 
29
from bzrlib.plugins.weave_fmt.weavefile import write_weave
30
30
 
31
31
def convert():
32
32
    WEAVE_NAME = "test.weave"
83
83
## XXX: Might like to write to stderr or the trace file instead but
84
84
## print_stats seems hardcoded to stdout
85
85
stats.print_stats(20)
86
 
            
87