Ralfp 12 лет назад
Родитель
Сommit
da86e62add
1 измененных файлов с 1 добавлено и 1 удалено
  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):