~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Martin Pool
  • Date: 2005-09-13 23:18:12 UTC
  • Revision ID: mbp@sourcefrog.net-20050913231812-dc1df8fb11f78a31
- rename last_patch to last_revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
        self.pb.update('get source ancestry')
116
116
        self.from_ancestry = self.from_branch.get_ancestry(self.revision_limit)
117
117
 
118
 
        dest_last_rev = self.to_branch.last_patch()
 
118
        dest_last_rev = self.to_branch.last_revision()
119
119
        self.pb.update('get destination ancestry')
120
120
        if dest_last_rev:
121
121
            dest_ancestry = self.to_branch.get_ancestry(dest_last_rev)