Show More
@@ -103,10 +103,9 b' class config(object):' | |||
|
103 | 103 | try: |
|
104 | 104 | include(inc, remap=remap, sections=sections) |
|
105 | 105 | except IOError, inst: |
|
106 | raise error.ParseError( | |
|
107 | _("cannot include %s (%s)") | |
|
106 | raise error.ParseError(_("cannot include %s (%s)") | |
|
108 | 107 | % (inc, inst.strerror), |
|
109 |
|
|
|
108 | "%s:%s" % (src, line)) | |
|
110 | 109 | continue |
|
111 | 110 | if emptyre.match(l): |
|
112 | 111 | continue |
@@ -36,7 +36,7 b' class Abort(Exception):' | |||
|
36 | 36 | class ConfigError(Abort): |
|
37 | 37 | 'Exception raised when parsing config files' |
|
38 | 38 | |
|
39 |
class ParseError( |
|
|
39 | class ParseError(Exception): | |
|
40 | 40 | 'Exception raised when parsing config files (msg[, pos])' |
|
41 | 41 | |
|
42 | 42 | class RepoError(Exception): |
@@ -1,4 +1,4 b'' | |||
|
1 |
hg: |
|
|
1 | hg: parse error at $HGRCPATH:1: invalid | |
|
2 | 2 | updating to branch default |
|
3 | 3 | 0 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
4 | 4 | [paths] |
@@ -6,10 +6,10 b' default = .../foo%bar' | |||
|
6 | 6 | default = .../foo%bar |
|
7 | 7 | bundle.mainreporoot=.../foobar |
|
8 | 8 | paths.default=.../foo%bar |
|
9 |
hg: |
|
|
9 | hg: parse error at $HGRCPATH:2: x = y | |
|
10 | 10 | foo.bar=a\nb\nc\nde\nfg |
|
11 | 11 | foo.baz=bif cb |
|
12 |
hg: |
|
|
12 | hg: parse error at $HGRCPATH:1: cannot include /path/to/nowhere/no-such-file (No such file or directory) | |
|
13 | 13 | % username expansion |
|
14 | 14 | John Doe |
|
15 | 15 | ui.username=$FAKEUSER |
General Comments 0
You need to be logged in to leave comments.
Login now