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

  • Committer: John Arbash Meinel
  • Date: 2005-07-26 15:09:12 UTC
  • mto: (0.5.98)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: john@arbash-meinel.com-20050726150912-9d6366fa2dbb2a14
Applied Aaron's 1-line patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        parent_id = self.parent_id(file_id)
55
55
        text_sha_1, text_size = self.contents_stats(file_id)
56
56
        ie = InventoryEntry(file_id, name, kind, parent_id)
57
 
        ie.text_sha_1 = text_sha_1
 
57
        ie.text_sha1 = text_sha_1
58
58
        ie.text_size = text_size
59
59
        return ie
60
60