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 |
|
|
32 | if isinstance(config, util.configparser): | |
33 |
cp |
|
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