3445
3445
class LocationSection(Section):
3447
def __init__(self, section, extra_path, branch_name=None):
3448
3448
super(LocationSection, self).__init__(section.id, section.options)
3449
3449
self.extra_path = extra_path
3450
3452
self.locals = {'relpath': extra_path,
3453
3456
def get(self, name, default=None, expand=True):
3454
3457
value = super(LocationSection, self).get(name, default)