bugfix: ModelTableOptions() should call TableOptions.__init__
authoradammck <adam.mckaig@gmail.com>
Fri, 16 Apr 2010 03:36:15 +0000 (23:36 -0400)
committerMichael Elsdoerfer <michael@elsdoerfer.com>
Wed, 21 Apr 2010 07:15:55 +0000 (09:15 +0200)
commit41f8171e10f311284d5408ba1faac03695bb7509
treecc1bbdc40b92f1e2f2dc79b8075ceb588a09d2d5
parenta3028b769cebdac095f4c28237a10eb46729568c
bugfix: ModelTableOptions() should call TableOptions.__init__

any options specified in the Meta of a ModelTable were not being
passed along to the constructor of TableOptions. this wasn't noticed
before, but now that order_by is an option of TableBase, it became
obvious.
django_tables/models.py
tests/test_models.py