##// END OF EJS Templates
config: make remap actually work
Matt Mackall -
r8298:9542f4c3 default
parent child Browse files
Show More
@@ -105,6 +105,8 b' class config(object):'
105 m = sectionre.match(l)
105 m = sectionre.match(l)
106 if m:
106 if m:
107 section = m.group(1)
107 section = m.group(1)
108 if remap:
109 section = remap.get(section, section)
108 if section not in self:
110 if section not in self:
109 self._data[section] = sortdict()
111 self._data[section] = sortdict()
110 continue
112 continue
General Comments 0
You need to be logged in to leave comments. Login now