From ece58a0dbd01d5d5d140c5792c259df3934188be Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Fri, 13 Aug 2021 11:14:22 +0200 Subject: [PATCH] Fix typo --- pgweb/docs/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgweb/docs/views.py b/pgweb/docs/views.py index c2d00c89..6da47d68 100644 --- a/pgweb/docs/views.py +++ b/pgweb/docs/views.py @@ -100,7 +100,7 @@ def docpage(request, version, filename): try: page = DocPage.objects.select_related('version').get(version=ver, file=fullname) except DocPage.DoesNotExist: - # if the page does not exist but there is a special pgae redirect, check + # if the page does not exist but there is a special page redirect, check # for the existence of that. if that does not exist, then we're really # done and can 404 page_redirect = get_object_or_404(DocPageRedirect, redirect_from=fullname) -- 2.39.5