/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 bzrlib/bundle/bundle_data.py

  • Committer: Aaron Bentley
  • Date: 2007-08-15 01:11:27 UTC
  • mfrom: (2699 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2700.
  • Revision ID: aaron.bentley@utoronto.ca-20070815011127-0il5s8oqmt26bma7
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
457
457
                        ' (unrecognized action): %r' % action_line)
458
458
            valid_actions[action](kind, extra, lines)
459
459
 
460
 
    def install_revisions(self, target_repo):
461
 
        """Install revisions and return the target revision"""
 
460
    def install_revisions(self, target_repo, stream_input=True):
 
461
        """Install revisions and return the target revision
 
462
 
 
463
        :param target_repo: The repository to install into
 
464
        :param stream_input: Ignored by this implementation.
 
465
        """
462
466
        apply_bundle.install_bundle(target_repo, self)
463
467
        return self.target
464
468