From 526813eae61c87e3c3662cfa6638a2ba3c698262 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 3 Jan 2015 00:08:21 +0100 Subject: [PATCH] Plaintext descriptions are no longer needed --- fdroidserver/metadata.py | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/fdroidserver/metadata.py b/fdroidserver/metadata.py index 11017122..2e29cd79 100644 --- a/fdroidserver/metadata.py +++ b/fdroidserver/metadata.py @@ -241,7 +241,7 @@ def check_metadata(info): # Formatter for descriptions. Create an instance, and call parseline() with # each line of the description source from the metadata. At the end, call -# end() and then text_plain, text_wiki and text_html will contain the result. +# end() and then text_wiki and text_html will contain the result. class DescriptionFormatter: stNONE = 0 stPARA = 1 @@ -250,7 +250,6 @@ class DescriptionFormatter: bold = False ital = False state = stNONE - text_plain = '' text_wiki = '' text_html = '' linkResolver = None @@ -269,7 +268,6 @@ class DescriptionFormatter: self.endol() def endpara(self): - self.text_plain += '\n' self.text_html += '

' self.state = self.stNONE @@ -349,7 +347,6 @@ class DescriptionFormatter: def addtext(self, txt): p, h = self.linkify(txt) - self.text_plain += p self.text_html += h def parseline(self, line): @@ -362,7 +359,6 @@ class DescriptionFormatter: self.text_html += '