# HG changeset patch # User Brian Neal # Date 1450147340 21600 # Node ID cd4db27c90e3779cabbeefe4197c5936f83221e3 # Parent 631a757bc16971b629402bed309aa9bd99f74a32 Fix unicode issue with creating forum threads for news. diff -r 631a757bc169 -r cd4db27c90e3 news/admin.py --- a/news/admin.py Mon Dec 14 19:43:45 2015 -0600 +++ b/news/admin.py Mon Dec 14 20:42:20 2015 -0600 @@ -12,8 +12,8 @@ import ftfy -COMMENT_THREAD_BODY = ("This topic was automatically created to discuss the " - "news story [{title}]({url}).") +COMMENT_THREAD_BODY = (u"This topic was automatically created to discuss the " + u"news story [{title}]({url}).") class CategoryAdmin(admin.ModelAdmin):