summaryrefslogtreecommitdiff
path: root/pgweb/docs/views.py
diff options
context:
space:
mode:
authorMagnus Hagander2021-08-13 09:14:22 +0000
committerMagnus Hagander2021-08-16 12:17:10 +0000
commitece58a0dbd01d5d5d140c5792c259df3934188be (patch)
treeacfc332bcbd2b2efcb78d95a996dd01baddfde0f /pgweb/docs/views.py
parentb41c7833217fdb4139703cdf85c647ca5f4308d3 (diff)
Fix typo
Diffstat (limited to 'pgweb/docs/views.py')
-rw-r--r--pgweb/docs/views.py2
1 files changed, 1 insertions, 1 deletions
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)