diff options
| -rw-r--r-- | django/contrib/admin/sites.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/admin/sites.py b/django/contrib/admin/sites.py index 43aa691fca..7e94bbf011 100644 --- a/django/contrib/admin/sites.py +++ b/django/contrib/admin/sites.py @@ -112,7 +112,7 @@ class AdminSite(object): """ return request.user.is_authenticated() and request.user.is_staff - def check_dependancies(self): + def check_dependencies(self): """ Check that all things needed to run the admin have been correctly installed. @@ -140,7 +140,7 @@ class AdminSite(object): return http.HttpResponseRedirect(request.path + '/') if settings.DEBUG: - self.check_dependancies() + self.check_dependencies() # Figure out the admin base URL path and stash it for later use self.root_path = re.sub(re.escape(url) + '$', '', request.path) |
