Fix count of flag fields. Being one short caused the 'quiet' option not to print.

This commit is contained in:
Raymond Hettinger 2011-01-05 20:08:25 +00:00
parent 452196fef1
commit 90e8f8cd9b
1 changed files with 2 additions and 2 deletions

View File

@ -1427,9 +1427,9 @@ static PyStructSequence_Desc flags_desc = {
flags__doc__, /* doc */
flags_fields, /* fields */
#ifdef RISCOS
12
13
#else
11
12
#endif
};