f[inish #37068821] selectable 0.4.0 and later incompatible with earlier code

see
http://django-selectable.readthedocs.org/en/version-0.5.2/releases.html.

In general, we can't blithely update our imported modules without
reading the release notes.
pull/1/head
eric 2012-10-02 18:47:52 -04:00
parent ceebcb690d
commit 6a6c249c83
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ from django.contrib.auth.models import User
class OwnerLookup(ModelLookup):
model = User
search_field = 'username__icontains'
search_fields = ('username__icontains',)
registry.register(OwnerLookup)