From d6d145e7c5b545ab40f6369f6f58a7891bb42c70 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Sat, 18 May 2019 14:42:34 -0700 Subject: [PATCH] Fix tag order --- lexipython/article.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lexipython/article.py b/lexipython/article.py index 4490809..367a12d 100644 --- a/lexipython/article.py +++ b/lexipython/article.py @@ -304,6 +304,6 @@ class LexiconArticle: next_link = ("Next →".format( next_article) if next_article is not None else "") - content += "\n\n\n
{}{}
\n".format( + content += "\n\n\n
{}{}
\n".format( prev_link, next_link) return content