From d73b196e97edb64034c54e381dcbaf38a88b4832 Mon Sep 17 00:00:00 2001 From: Taka Date: Wed, 26 Feb 2020 09:43:33 +0000 Subject: [PATCH] Allow tags to be upper-case. --- asl_articles/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asl_articles/utils.py b/asl_articles/utils.py index 2940cf8..59ec965 100644 --- a/asl_articles/utils.py +++ b/asl_articles/utils.py @@ -175,7 +175,7 @@ def encode_tags( tags ): """Encode tags prior to storing them in the database.""" if not tags: return None - return "\n".join( t.lower() for t in tags ) + return "\n".join( tags ) def decode_tags( tags ): """Decode tags after loading them from the database."""