Show More
@@ -309,7 +309,7 b' class ui(object):' | |||||
309 | sections.sort() |
|
309 | sections.sort() | |
310 | for section in sections: |
|
310 | for section in sections: | |
311 | for name, value in self.configitems(section, untrusted): |
|
311 | for name, value in self.configitems(section, untrusted): | |
312 | yield section, name, value.replace('\n', '\\n') |
|
312 | yield section, name, str(value).replace('\n', '\\n') | |
313 |
|
313 | |||
314 | def extensions(self): |
|
314 | def extensions(self): | |
315 | result = self.configitems("extensions") |
|
315 | result = self.configitems("extensions") |
General Comments 0
You need to be logged in to leave comments.
Login now