Mercurial > public > mercurial-scm > hg-stable
diff mercurial/fancyopts.py @ 3673:eb0b4a2d70a9
white space and line break cleanups
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 17 Nov 2006 08:06:54 +0100 |
parents | bf4e7ef08741 |
children | 86c1d1d35593 |
line wrap: on
line diff
--- a/mercurial/fancyopts.py Thu Nov 16 08:52:55 2006 +0100 +++ b/mercurial/fancyopts.py Fri Nov 17 08:06:54 2006 +0100 @@ -20,7 +20,7 @@ opts, args = getopt.getopt(args, short, long) for opt, arg in opts: - if dt[map[opt]] is type(fancyopts): state[map[opt]](state,map[opt],arg) + if dt[map[opt]] is type(fancyopts): state[map[opt]](state, map[opt], arg) elif dt[map[opt]] is type(1): state[map[opt]] = int(arg) elif dt[map[opt]] is type(''): state[map[opt]] = arg elif dt[map[opt]] is type([]): state[map[opt]].append(arg)