commit | 90e8f8cd9b18fd18581a1ee01664f50852fe68f8 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Wed Jan 05 20:08:25 2011 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Wed Jan 05 20:08:25 2011 +0000 |
tree | f1d61e0c5010a4909ca2de7aa568418eb1be3413 | |
parent | 452196fef1a613c44f757edcb55a8458e8dc9552 [diff] [blame] |
Fix count of flag fields. Being one short caused the 'quiet' option not to print.
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 730567e..de51155 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c
@@ -1427,9 +1427,9 @@ flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 12 + 13 #else - 11 + 12 #endif };