~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/changeset/serializer/v07.py

  • Committer: Aaron Bentley
  • Date: 2006-05-17 13:43:53 UTC
  • mto: (1185.82.108 w-changeset)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: abentley@panoramicfeedback.com-20060517134353-3001a42d3bd9290c
Use rightmost parent always

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
            # Try to only grab bases which are in the
105
105
            # revision set
106
106
            if rev.parent_ids:
107
 
                base_id = rev.parent_ids[0]
 
107
                base_id = rev.parent_ids[-1]
108
108
            else:
109
109
                base_id = NULL_REVISION
110
110