From e1a4ba80e9e0af1b6b6212bfdadad943cc9107a1 Mon Sep 17 00:00:00 2001 From: utapyngo Date: Fri, 18 Apr 2014 19:17:23 +0700 Subject: [PATCH] Fixed typo: CopntentType --- polymorphic/polymorphic_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymorphic/polymorphic_model.py b/polymorphic/polymorphic_model.py index daf2689..6e4c703 100644 --- a/polymorphic/polymorphic_model.py +++ b/polymorphic/polymorphic_model.py @@ -99,7 +99,7 @@ class PolymorphicModel(six.with_metaclass(PolymorphicModelBase, models.Model)): """ # the following line would be the easiest way to do this, but it produces sql queries # return self.polymorphic_ctype.model_class() - # so we use the following version, which uses the CopntentType manager cache. + # so we use the following version, which uses the ContentType manager cache. # Note that model_class() can return None for stale content types; # when the content type record still exists but no longer refers to an existing model. try: