Commit 1efb2e73 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed typo.

parent 6bb6df29
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ class ModelBase(type):
                cls.add_to_class(mgr_name, new_manager)

    def add_to_class(cls, name, value):
        # We should call the contirbute_to_class method only if it's bound
        # We should call the contribute_to_class method only if it's bound
        if not inspect.isclass(value) and hasattr(value, 'contribute_to_class'):
            value.contribute_to_class(cls, name)
        else: