~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-07-22 14:11:10 UTC
  • mfrom: (6024.3.13 2.5-verbosity-knob-812928)
  • Revision ID: pqm@pqm.ubuntu.com-20110722141110-t853v5hoqst5iwr3
(jam) Fix hte release notes for verbosity knob.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
from bzrlib.trace import mutter, mutter_callsite, note, is_quiet
67
67
 
68
68
 
 
69
BZR_BRANCH_FORMAT_4 = "Bazaar-NG branch, format 0.0.4\n"
 
70
BZR_BRANCH_FORMAT_5 = "Bazaar-NG branch, format 5\n"
 
71
BZR_BRANCH_FORMAT_6 = "Bazaar Branch Format 6 (bzr 0.15)\n"
 
72
 
 
73
 
69
74
class Branch(controldir.ControlComponent):
70
75
    """Branch holding a history of revisions.
71
76
 
3160
3165
 
3161
3166
 
3162
3167
class Converter7to8(object):
3163
 
    """Perform an in-place upgrade of format 7 to format 8"""
 
3168
    """Perform an in-place upgrade of format 6 to format 7"""
3164
3169
 
3165
3170
    def convert(self, branch):
3166
3171
        format = BzrBranchFormat8()