Mercurial > hg
changeset 3749:f9567a7fa3b3
additional fixes for issue436
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Fri, 01 Dec 2006 16:18:16 -0200 |
parents | 7b88bd88f040 |
children | 0f550b87deb8 f902f409cd81 |
files | mercurial/fancyopts.py tests/test-issue436 |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/fancyopts.py Fri Dec 01 15:40:23 2006 +0100 +++ b/mercurial/fancyopts.py Fri Dec 01 16:18:16 2006 -0200 @@ -11,7 +11,8 @@ map['-'+s] = map['--'+l] = pl state[pl] = d dt[pl] = type(d) - if not d is None and not callable(d): + if (d is not None and d is not True and d is not False and + not callable(d)): if s: s += ':' if l: l += '=' if s: short = short + s @@ -25,6 +26,7 @@ elif dt[map[opt]] is type(''): state[map[opt]] = arg elif dt[map[opt]] is type([]): state[map[opt]].append(arg) elif dt[map[opt]] is type(None): state[map[opt]] = True + elif dt[map[opt]] is type(False): state[map[opt]] = True return args