﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
999	'bool' object has no attribute 'get' when trying to add a record	Ian@…	Adrian Holovaty	"{{{
Request Method:  	GET
Request URL: 	http://localhost:8000/cms/admin/forum/forums/add/
Exception Type: 	AttributeError
Exception Value: 	'bool' object has no attribute 'get'
Exception Location: 	/usr/local/lib/python2.4/site-packages/django/core/meta/__init__.py in get_manipulator_fields, line 256
}}}

the model in question is here:
{{{
class Forum(meta.Model):
    category = meta.ForeignKey( Category )
    name = meta.CharField(maxlength=150, core=True)
    description = meta.TextField()
    # # of posts
    posts = meta.IntegerField()
    # # of topics 
    topics = meta.IntegerField()
    prune_it = meta.BooleanField()
    class META:                                                                                                   
        admin = meta.Admin(                                                                                       
            list_display = ('name', 'description'),                                                               
        )                                                                                                         
           
}}}

any hints?"	defect	closed	Metasystem	0.91	normal	fixed			Accepted	0	0	0	0	0	0
