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

  • Committer: John Arbash Meinel
  • Date: 2005-06-17 16:38:26 UTC
  • mto: (0.5.85) (1185.82.1 bzr-w-changeset)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: john@arbash-meinel.com-20050617163826-946bf076099df59f
Fixed some typos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        self.branch = branch
88
88
        self.delta = delta
89
89
        self._get_revision_list(revisions)
90
 
        self._get_all_meta_info()
91
90
 
92
91
    def _get_revision_list(self, revisions):
93
92
        """This generates the list of all revisions from->to.
104
103
        if old_revno is None:
105
104
            raise bzrlib.errors.BzrError('Could not find revision for %s' % revisions[0])
106
105
 
 
106
        self.revision_list = []
107
107
        if new_revno is not None:
108
108
            for rev_id in rh[old_revno:new_revno+1]:
109
109
                self.revision_list.append(self.branch.get_revision(rev_id))