##// END OF EJS Templates
config: load included config files in binary mode...
Augie Fackler -
r31154:fd3f4bf9 default
parent child Browse files
Show More
@@ -169,5 +169,5 b' class config(object):'
169 169
170 170 def read(self, path, fp=None, sections=None, remap=None):
171 171 if not fp:
172 fp = util.posixfile(path)
172 fp = util.posixfile(path, 'rb')
173 173 self.parse(path, fp.read(), sections, remap, self.read)
General Comments 0
You need to be logged in to leave comments. Login now