Fixed #5444 -- Changed manipulator class construction to use type(), rather than types.ClassType(). Helps with Jython compatibility. Patch from Leo Soto.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6277 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
39814eeb54
commit
7a6abfdd3b
|
@ -9,7 +9,6 @@ from django.utils.datastructures import DotExpandedDict
|
|||
from django.utils.text import capfirst
|
||||
from django.utils.encoding import smart_str
|
||||
from django.utils.translation import ugettext as _
|
||||
import types
|
||||
|
||||
def add_manipulators(sender):
|
||||
cls = sender
|
||||
|
@ -38,7 +37,7 @@ class ManipulatorDescriptor(object):
|
|||
bases = [self.base]
|
||||
if hasattr(model, 'Manipulator'):
|
||||
bases = [model.Manipulator] + bases
|
||||
self.man = types.ClassType(self.name, tuple(bases), {})
|
||||
self.man = type(self.name, tuple(bases), {})
|
||||
self.man._prepare(model)
|
||||
return self.man
|
||||
|
||||
|
|
Loading…
Reference in New Issue