~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/changeset/read_changeset.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:
152
152
            # and thus base truly is None
153
153
            return None
154
154
        else:
155
 
            return revision.parent_ids[0]
 
155
            return revision.parent_ids[-1]
156
156
 
157
157
    def _get_target(self):
158
158
        """Return the target revision."""