Browse Source

Typo in exception name

Ralfp 12 years ago
parent
commit
da86e62add
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misago/apps/errors.py

+ 1 - 1
misago/apps/errors.py

@@ -2,7 +2,7 @@ from django.template import RequestContext
 
 def error_not_implemented(request, *args, **kwargs):
     """Generic "NOT IMPLEMENTED!" Error"""
-    raise NotImplemenetedError("This action is not implemented!")
+    raise NotImplementedError("This action is not implemented!")
 
 
 def error_view(request, error, message):