~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/importd/archivemanager.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2005-11-18 05:11:00 UTC
  • mfrom: (1102.1.159 launchpad-branches)
  • Revision ID: pqm@pqm.ubuntu.com-20051118051100-b3c97d86dfa45faf
[r=SteveA] Merging bzr branch support

Show diffs side-by-side

added added

removed removed

Lines of Context:
172
172
        mirrorer = self._master.make_mirrorer(self._mirror)
173
173
        mirrorer.mirror(revision)
174
174
 
 
175
    def mirrorBranch(self, logger):
 
176
        mirrorer = self._master.make_mirrorer(self._mirror)
 
177
        for line in mirrorer.iter_mirror(limit=self.version):
 
178
            # XXX: currently, in importd and cscvs, progress verbosity is not
 
179
            # at INFO level but at WARNING level. -- DavidAllouche 2005-11-16
 
180
            logger.warning(line)
 
181
 
175
182
    def mirrorIsEmpty(self):
176
183
        """Is the mirror empty or non-existent?
177
184