~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: John Arbash Meinel
  • Date: 2007-01-24 20:40:20 UTC
  • mfrom: (2242 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2245.
  • Revision ID: john@arbash-meinel.com-20070124204020-szyxbjpn9mzbsks7
[merge] bzr.dev 2242

Show diffs side-by-side

added added

removed removed

Lines of Context:
1077
1077
    def append_revision(self, *revision_ids):
1078
1078
        """See Branch.append_revision."""
1079
1079
        for revision_id in revision_ids:
 
1080
            _mod_revision.check_not_reserved_id(revision_id)
1080
1081
            mutter("add {%s} to revision-history" % revision_id)
1081
1082
        rev_history = self.revision_history()
1082
1083
        rev_history.extend(revision_ids)