summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/scripting/scripts/exportxhtml
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-24 11:36:24 -0600
committerTimothy Pearson <[email protected]>2011-12-24 11:36:24 -0600
commit039393e199a49b5158929668908f9cb1fe226484 (patch)
treed7aec29ab26866737b6786073bba888af62cb1bf /kexi/plugins/scripting/scripts/exportxhtml
parent2d6954f69caf63ed5057bd8e1405a65d7d970292 (diff)
downloadkoffice-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.py2
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")