- Timestamp:
- 07/21/06 00:33:42 (2 years ago)
- Files:
-
- 1 modified
-
protocols/protocol_launchpadweb.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
protocols/protocol_launchpadweb.py
r43 r44 112 112 com_counter += 1 113 113 content="" 114 phrase = ''115 114 for z in body : 115 phrase = '' 116 116 for ligne in z.contents : 117 117 if ligne.string != None : 118 phrase += ligne.string 119 #phrase = z.contents[0].string 120 new_phrase = self.htmlify(phrase) 121 #new_phrase2 = new_phrase.strip().replace(">",">") 122 content = "%s\n%s" %(content,new_phrase) 118 phrase += ligne.string.strip() 119 content += self.htmlify(phrase) 120 content += "\n\n" 123 121 newcom = comment(com_counter,content,poster,title,"00/00/00") 124 122 zebug.addComment(newcom)
