94
103
class RemoteBranch(Branch):
95
def __init__(self, baseurl, find_root=False, lock_mode='r'):
104
def __init__(self, baseurl, find_root=True, lock_mode='r'):
96
105
"""Create new proxy for a remote branch."""
97
106
if lock_mode not in ('', 'r'):
98
107
raise BzrError('lock mode %r is not supported for remote branches'
105
117
return '%s(%r)' % (self.__class__.__name__, self.baseurl)