Re: trying to setup field sets in admin, keep getting error

2007-03-30 Thread James Bennett
On 3/30/07, drackett <[EMAIL PROTECTED]> wrote: > I see.. if there were more than one item in there, the last comma > isn't necessary anymore, correct? Correct. The comma is needed on a single-element tuple so that Python can distinguish between something that's in parentheses for grouping

Re: trying to setup field sets in admin, keep getting error

2007-03-30 Thread drackett
I see.. if there were more than one item in there, the last comma isn't necessary anymore, correct? ('more', { 'classes': 'collapse', 'fields' : ('entry_date', 'entry_something') }), On Mar 30, 2:50 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On 3/30/07, drackett <[EMAIL PROTECTED]>

Re: trying to setup field sets in admin, keep getting error

2007-03-30 Thread James Bennett
On 3/30/07, drackett <[EMAIL PROTECTED]> wrote: > ('more', { 'classes': 'collapse', 'fields' : > ('entry_date') }), This line is the culprit; change it to ('more', { 'classes': 'collapse', 'fields' : ('entry_date',) }), Take note of the comma after 'entry_date'. The