~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

Unbreak bzr push sftp:////

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
    # - RBC 20060112
100
100
    base = None
101
101
 
102
 
    @staticmethod
103
 
    def create(base):
104
 
        """Construct the current default format branch in a_bzrdir.
105
 
 
106
 
        This creates the current default BzrDir format, and if that 
107
 
        supports multiple Branch formats, then the default Branch format
108
 
        will take effect.
109
 
        """
110
 
        print "not usable until we have repositories"
111
 
        raise NotImplementedError("not usable right now")
112
 
        return bzrdir.BzrDir.create(base)
113
 
 
114
102
    def __init__(self, *ignored, **ignored_too):
115
103
        raise NotImplementedError('The Branch class is abstract')
116
104