--- 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)