From: Michael Tremer Date: Fri, 6 Oct 2017 12:45:55 +0000 (+0100) Subject: Drop dependency on textile X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d0c3e754c4d816704da06363e02464d2982a2ac;p=pbs.git Drop dependency on textile Signed-off-by: Michael Tremer --- diff --git a/web/ui_modules.py b/web/ui_modules.py index d5fb6375..de053f3c 100644 --- a/web/ui_modules.py +++ b/web/ui_modules.py @@ -8,7 +8,6 @@ import math import pytz import re import string -import textile import tornado.escape import tornado.web @@ -90,7 +89,7 @@ class TextModule(UIModule): if pre: return "
%s
" % text - return textile.textile(text) + return text class CommitMessageModule(TextModule):