~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: John Arbash Meinel
  • Date: 2005-07-16 17:38:55 UTC
  • mto: (1185.82.1 bzr-w-changeset) (0.5.98)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: john@arbash-meinel.com-20050716173855-a38d2990b32a4649
Fixed a bug in the rename code, added more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        else:
132
132
            f = open(filename, 'U')
133
133
 
134
 
        cset_info, cset_tree, cset_inv = read_changeset.read_changeset(f, b)
 
134
        cset_info, cset_tree = read_changeset(f, b)
135
135
        print cset_info
136
136
        print cset_tree
137
 
        pack_xml(cset_inv, sys.stdout)
 
137
        pack_xml(cset_tree.inventory, sys.stdout)
138
138
 
139
139
 
140
140