Show More
@@ -93,6 +93,7 class config(object): | |||
|
93 | 93 | self.set(section, item, v, "%s:%d" % (src, line)) |
|
94 | 94 | continue |
|
95 | 95 | item = None |
|
96 | cont = False | |
|
96 | 97 | m = includere.match(l) |
|
97 | 98 | if m: |
|
98 | 99 | inc = m.group(1) |
@@ -24,6 +24,9 def dispatch(args): | |||
|
24 | 24 | except util.Abort, inst: |
|
25 | 25 | sys.stderr.write(_("abort: %s\n") % inst) |
|
26 | 26 | return -1 |
|
27 | except error.ConfigError, inst: | |
|
28 | sys.stderr.write(_("hg: %s\n") % inst) | |
|
29 | return -1 | |
|
27 | 30 | return _runcatch(u, args) |
|
28 | 31 | |
|
29 | 32 | def _runcatch(ui, args): |
General Comments 0
You need to be logged in to leave comments.
Login now