diff options
author | Timothy Pearson <[email protected]> | 2011-12-24 11:36:24 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-24 11:36:24 -0600 |
commit | 039393e199a49b5158929668908f9cb1fe226484 (patch) | |
tree | d7aec29ab26866737b6786073bba888af62cb1bf /kexi/plugins/scripting/scripts/exportxhtml | |
parent | 2d6954f69caf63ed5057bd8e1405a65d7d970292 (diff) | |
download | koffice-039393e199a49b5158929668908f9cb1fe226484.tar.gz koffice-039393e199a49b5158929668908f9cb1fe226484.zip |
Rename a few stragglers
Diffstat (limited to 'kexi/plugins/scripting/scripts/exportxhtml')
-rw-r--r-- | kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py b/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py index d0d1f0cc..cace0340 100644 --- a/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py +++ b/kexi/plugins/scripting/scripts/exportxhtml/ExportXHTML.py @@ -131,7 +131,7 @@ class HtmlExporter: if items == None: break output.write("<tr>") for item in items: - u = tqunicode(str(self.htmlescape(item)),"latin-1") + u = unicode(str(self.htmlescape(item)),"latin-1") output.write("<td>%s</td>" % u.encode("utf-8")) output.write("</tr>\n") output.write("</table>\n") |