~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin
  • Date: 2010-09-28 18:51:47 UTC
  • mto: This revision was merged to the branch mainline in revision 5450.
  • Revision ID: gzlist@googlemail.com-20100928185147-c07zkm6js2kbu0uu
Fix some "its" vs. "it's" spelling confusion in bzrlib code... also, ahem, a name in the NEWS file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1522
1522
     * an open routine.
1523
1523
 
1524
1524
    Formats are placed in an dict by their format string for reference
1525
 
    during branch opening. Its not required that these be instances, they
 
1525
    during branch opening. It's not required that these be instances, they
1526
1526
    can be classes themselves with class methods - it simply depends on
1527
1527
    whether state is needed for a given format or not.
1528
1528
 
3480
3480
                # push into the master from the source branch.
3481
3481
                self.source._basic_push(master_branch, overwrite, stop_revision)
3482
3482
                # and push into the target branch from the source. Note that we
3483
 
                # push from the source branch again, because its considered the
 
3483
                # push from the source branch again, because it's considered the
3484
3484
                # highest bandwidth repository.
3485
3485
                result = self.source._basic_push(self.target, overwrite,
3486
3486
                    stop_revision)