Hi, One bug I just stumbled over: I added django.contrib.comments to my INSTALLED_APPS and installed the model to the database. When I try to open a comment (or try to add a comment in the admin), I get the following exception:
TemplateSyntaxError: Caught exception: AttributeError: 'AdminBoundFieldSet' object has no attribute 'bound_field_lines' args = ("Caught exception:\n AttributeError: 'AdminBoundFieldSet' object has no attribute 'bound_field_lines'",) source = (<django.core.template.StringOrigin object>, (6089, 6135)) traceback = ' File "/home/rfc1437/project/django/core/templa...s__.__name__, self.name, self.bound_field_lines)\n' The weird thing: AdminBoundFieldSet is a subclass of BoundFieldSet and that sets self.bound_field_lines in the __init__ - so the only idea I have is that it's some weird exception in the initialization? The error itself seems to be triggered by the __repr__ method of BoundFieldSet. bye, Georg