don't strip html on read/write

This commit is contained in:
Damien Elmes 2009-02-06 18:44:00 +09:00
parent 0224f07794
commit 11d0b2d274

View file

@ -363,7 +363,7 @@ class FactEditor(object):
n = _("Edit")
self.deck.setUndoStart(n, merge=True)
for (w, f) in self.widgets.items():
v = tidyHTML(unicode(w.toHtml())).strip()
v = tidyHTML(unicode(w.toHtml()))
if self.fact[f.name] != v:
self.fact[f.name] = v
modified = True