From: Richard Heck Date: Fri, 17 Sep 2010 12:26:55 +0000 (+0000) Subject: Typos. X-Git-Tag: 2.0.0~2569 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d11ef5b5f61a2b84dd295b3fcb84d4e3eef95a35;p=features.git Typos. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35424 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/LyX.py b/lib/lyx2lyx/LyX.py index 36fb64bc60..2b9560aac9 100644 --- a/lib/lyx2lyx/LyX.py +++ b/lib/lyx2lyx/LyX.py @@ -521,16 +521,16 @@ class LyX_base: def convert(self): "Convert from current (self.format) to self.end_format." - mode, convertion_chain = self.chain() - self.warning("convertion chain: " + str(convertion_chain), 3) + mode, conversion_chain = self.chain() + self.warning("conversion chain: " + str(conversion_chain), 3) - for step in convertion_chain: + for step in conversion_chain: steps = getattr(__import__("lyx_" + step), mode) self.warning("Convertion step: %s - %s" % (step, mode), default_debug__ + 1) if not steps: - self.error("The convertion to an older " + self.error("The conversion to an older " "format (%s) is not implemented." % self.format) multi_conv = len(steps) != 1 @@ -563,7 +563,7 @@ class LyX_base: def chain(self): """ This is where all the decisions related with the - convertion are taken. It returns a list of modules needed to + conversion are taken. It returns a list of modules needed to convert the LyX file from self.format to self.end_format""" self.start = self.format