summaryrefslogtreecommitdiff
path: root/l10ntools/scripts/tool/xhtex.py
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2010-07-14 17:06:23 +0200
committerIvo Hinkelmann <ihi@openoffice.org>2010-07-14 17:06:23 +0200
commitf72e6b7a877f3d5326bb3c9dad53aa1913b0ed2e (patch)
tree0c2913a3a16b5f9ce6576179dc8b6da208e00b10 /l10ntools/scripts/tool/xhtex.py
parenta1b4b65e3514c8ac3c21bae04ceeccc90eb29bfa (diff)
txtl10n: #i113008# #i113125# cleanup
Diffstat (limited to 'l10ntools/scripts/tool/xhtex.py')
-rw-r--r--l10ntools/scripts/tool/xhtex.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/l10ntools/scripts/tool/xhtex.py b/l10ntools/scripts/tool/xhtex.py
index c876b9f7c2a0..ab6e1dd14631 100644
--- a/l10ntools/scripts/tool/xhtex.py
+++ b/l10ntools/scripts/tool/xhtex.py
@@ -25,12 +25,12 @@
#
#*************************************************************************
-from l10ntool import abstractL10nTool
+from l10ntool import AbstractL10nTool
from sdf import SdfEntity
import sys
import xml.dom.minidom
-class xhtex(abstractL10nTool):
+class Xhtex(AbstractL10nTool):
_resource_type = "xht"
_sdfdata = ()
_lang = ""
@@ -65,7 +65,7 @@ class xhtex(abstractL10nTool):
# L10N tool
def __init__(self):
- abstractL10nTool.__init__(self)
+ AbstractL10nTool.__init__(self)
def parse_file(self, filename):
document = ""
@@ -130,5 +130,5 @@ class xhtex(abstractL10nTool):
return SdfEntity(project=self._options.project_name, source_file=self.get_filename_string(inputfile),
resource_type=self._resource_type, gid=id, lid="", langid=lang,text=text)
-run = xhtex()
+run = Xhtex()