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

View file

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