3103
3103
configobj = self._get_configobj()
3108
3109
section_obj = configobj[section]
3112
3116
except errors.UnknownSmartMethod:
3115
3122
def _response_to_configobj(self, response):
3116
3123
if len(response[0]) and response[0][0] != 'ok':
3117
3124
raise errors.UnexpectedSmartServerResponse(response)
3118
3125
lines = response[1].read_body_bytes().splitlines()
3122
3132
class RemoteBranchConfig(RemoteConfig):