mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 05:55:34 +00:00
Typos.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35424 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
814e16daef
commit
d11ef5b5f6
@ -521,16 +521,16 @@ class LyX_base:
|
|||||||
|
|
||||||
def convert(self):
|
def convert(self):
|
||||||
"Convert from current (self.format) to self.end_format."
|
"Convert from current (self.format) to self.end_format."
|
||||||
mode, convertion_chain = self.chain()
|
mode, conversion_chain = self.chain()
|
||||||
self.warning("convertion chain: " + str(convertion_chain), 3)
|
self.warning("conversion chain: " + str(conversion_chain), 3)
|
||||||
|
|
||||||
for step in convertion_chain:
|
for step in conversion_chain:
|
||||||
steps = getattr(__import__("lyx_" + step), mode)
|
steps = getattr(__import__("lyx_" + step), mode)
|
||||||
|
|
||||||
self.warning("Convertion step: %s - %s" % (step, mode),
|
self.warning("Convertion step: %s - %s" % (step, mode),
|
||||||
default_debug__ + 1)
|
default_debug__ + 1)
|
||||||
if not steps:
|
if not steps:
|
||||||
self.error("The convertion to an older "
|
self.error("The conversion to an older "
|
||||||
"format (%s) is not implemented." % self.format)
|
"format (%s) is not implemented." % self.format)
|
||||||
|
|
||||||
multi_conv = len(steps) != 1
|
multi_conv = len(steps) != 1
|
||||||
@ -563,7 +563,7 @@ class LyX_base:
|
|||||||
|
|
||||||
def chain(self):
|
def chain(self):
|
||||||
""" This is where all the decisions related with the
|
""" 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"""
|
convert the LyX file from self.format to self.end_format"""
|
||||||
|
|
||||||
self.start = self.format
|
self.start = self.format
|
||||||
|
Loading…
Reference in New Issue
Block a user