From f1a4bba40281fa21816d6619d32136fc6a8f086d Mon Sep 17 00:00:00 2001 From: joshmorel Date: Sun, 16 Apr 2017 17:33:28 -0400 Subject: Fix Python 3 unorderable types issue {% for article in articles | sort %} resulted in: "CRITICAL: unorderable types: Article() < Article()" --- tuxlite_zf/templates/tags.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tuxlite_zf/templates') diff --git a/tuxlite_zf/templates/tags.html b/tuxlite_zf/templates/tags.html index 9cba867..cfd9480 100644 --- a/tuxlite_zf/templates/tags.html +++ b/tuxlite_zf/templates/tags.html @@ -5,7 +5,7 @@ {% for tag, articles in tags|sort %}
  • {{ tag }}
  • -- cgit