Show More
@@ -100,7 +100,13 b' class config(object):' | |||
|
100 | 100 | base = os.path.dirname(src) |
|
101 | 101 | inc = os.path.normpath(os.path.join(base, inc)) |
|
102 | 102 | if include: |
|
103 | try: | |
|
103 | 104 | include(inc, remap=remap, sections=sections) |
|
105 | except IOError, inst: | |
|
106 | msg = _("config error at %s:%d: " | |
|
107 | "cannot include %s (%s)") \ | |
|
108 | % (src, line, inc, inst.strerror) | |
|
109 | raise error.ConfigError(msg) | |
|
104 | 110 | continue |
|
105 | 111 | if emptyre.match(l): |
|
106 | 112 | continue |
General Comments 0
You need to be logged in to leave comments.
Login now