/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 bzrlib/index.py

  • Committer: John Arbash Meinel
  • Date: 2009-12-01 16:03:14 UTC
  • mto: (4851.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4852.
  • Revision ID: john@arbash-meinel.com-20091201160314-kw90ls7dhrpsnilw
Track down one more location that needs casting to static tuple for the new builder code

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
                if reference not in self._nodes:
206
206
                    self._check_key(reference)
207
207
                    absent_references.append(reference)
208
 
            node_refs.append(as_st(reference_list))
 
208
            reference_list = as_st([as_st(ref).intern()
 
209
                                    for ref in reference_list])
 
210
            node_refs.append(reference_list)
209
211
        return as_st(node_refs), absent_references
210
212
 
211
213
    def add_node(self, key, value, references=()):