/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/commit.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-13 02:04:41 UTC
  • mfrom: (1558.16.3 revert-missing)
  • Revision ID: pqm@pqm.ubuntu.com-20060613020441-b1038ac438997a41
Fix some typos (found using aspell) (Jelmer Vernooij).

Show diffs side-by-side

added added

removed removed

Lines of Context:
316
316
            # revision data is in the local branch now.
317
317
            
318
318
            # upload revision data to the master.
319
 
            # this will propogate merged revisions too if needed.
 
319
            # this will propagate merged revisions too if needed.
320
320
            if self.bound_branch:
321
321
                self.master_branch.repository.fetch(self.branch.repository,
322
322
                                                    revision_id=self.rev_id)
411
411
            except Exception, e:
412
412
                found_exception = e
413
413
        if found_exception is not None: 
414
 
            # dont do a plan raise, because the last exception may have been
 
414
            # don't do a plan raise, because the last exception may have been
415
415
            # trashed, e is our sure-to-work exception even though it loses the
416
416
            # full traceback. XXX: RBC 20060421 perhaps we could check the
417
417
            # exc_info and if its the same one do a plain raise otherwise 
532
532
 
533
533
            self.builder.record_entry_contents(ie, self.parent_invs, 
534
534
                path, self.work_tree)
535
 
            # describe the nature of the change that has occured relative to
 
535
            # describe the nature of the change that has occurred relative to
536
536
            # the basis inventory.
537
537
            if (self.basis_inv.has_id(ie.file_id)):
538
538
                basis_ie = self.basis_inv[ie.file_id]