~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Aaron Bentley
  • Date: 2006-06-12 02:11:45 UTC
  • mfrom: (1759.2.2 integration)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: aaron.bentley@utoronto.ca-20060612021145-0ced20f7791f3c66
Fix some typos (found using aspell) (Jelmer Vernooij).

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
                # we fetch all the texts, because texts do
171
171
                # not reference anything, and its cheap enough
172
172
                to_weave.join(from_weave, version_ids=required_versions) 
173
 
                # we dont need *all* of this data anymore, but we dont know
 
173
                # we don't need *all* of this data anymore, but we dont know
174
174
                # what we do. This cache clearing will result in a new read 
175
175
                # of the knit data when we do the checkout, but probably we
176
176
                # want to emit the needed data on the fly rather than at the
191
191
    
192
192
            child_pb = bzrlib.ui.ui_factory.nested_progress_bar()
193
193
            try:
194
 
                # just merge, this is optimisable and its means we dont
 
194
                # just merge, this is optimisable and its means we don't
195
195
                # copy unreferenced data such as not-needed inventories.
196
196
                pb.update("fetch inventory", 1, 3)
197
197
                from_weave = self.from_repository.get_inventory_weave()
273
273
 
274
274
 
275
275
class Fetcher(object):
276
 
    """Backwards compatability glue for branch.fetch()."""
 
276
    """Backwards compatibility glue for branch.fetch()."""
277
277
 
278
278
    @deprecated_method(zero_eight)
279
279
    def __init__(self, to_branch, from_branch, last_revision=None, pb=None):