##// END OF EJS Templates
hgwebdir: class hgwebdir should also accept a configparser instance
Michael Gebetsroither -
r4051:02205626 default
parent child Browse files
Show More
@@ -29,8 +29,11 b' class hgwebdir(object):'
29 self.repos = cleannames(config.items())
29 self.repos = cleannames(config.items())
30 self.repos.sort()
30 self.repos.sort()
31 else:
31 else:
32 cp = util.configparser()
32 if isinstance(config, util.configparser):
33 cp.read(config)
33 cp = config
34 else:
35 cp = util.configparser()
36 cp.read(config)
34 self.repos = []
37 self.repos = []
35 if cp.has_section('web'):
38 if cp.has_section('web'):
36 if cp.has_option('web', 'motd'):
39 if cp.has_option('web', 'motd'):
General Comments 0
You need to be logged in to leave comments. Login now