~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

remove all trailing whitespace from bzr source

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
    def __fetch(self):
129
129
        """Primary worker function.
130
130
 
131
 
        This initialises all the needed variables, and then fetches the 
 
131
        This initialises all the needed variables, and then fetches the
132
132
        requested revisions, finally clearing the progress bar.
133
133
        """
134
134
        self.count_total = 0
208
208
            if pb is not None:
209
209
                pb.finished()
210
210
        self.count_copied += len(revs)
211
 
        
 
211
 
212
212
    def _revids_to_fetch(self):
213
213
        """Determines the exact revisions needed from self.from_repository to
214
214
        install self._last_revision in self.to_repository.
285
285
 
286
286
class Inter1and2Helper(object):
287
287
    """Helper for operations that convert data from model 1 and 2
288
 
    
 
288
 
289
289
    This is for use by fetchers and converters.
290
290
    """
291
291
 
376
376
 
377
377
    def regenerate_inventory(self, revs):
378
378
        """Generate a new inventory versionedfile in target, convertin data.
379
 
        
 
379
 
380
380
        The inventory is retrieved from the source, (deserializing it), and
381
381
        stored in the target (reserializing it in a different format).
382
382
        :param revs: The revisions to include