[LyX/master] docbook2epub: make the output of the parameters easier to read.
Thibaut Cuvelier
tcuvelier at lyx.org
Mon Nov 11 22:50:56 UTC 2024
commit 1381e3e5752b9eb29a8139b9da87f475f9569522
Author: Thibaut Cuvelier <tcuvelier at lyx.org>
Date: Mon Nov 11 23:44:05 2024 +0100
docbook2epub: make the output of the parameters easier to read.
---
lib/scripts/docbook2epub.py | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/lib/scripts/docbook2epub.py b/lib/scripts/docbook2epub.py
index 6e961e6147..2c2a0973dd 100644
--- a/lib/scripts/docbook2epub.py
+++ b/lib/scripts/docbook2epub.py
@@ -49,14 +49,14 @@ class DocBookToEpub:
self.script_folder = os.path.dirname(self.own_path) + '/../'
print('Generating ePub with the following parameters:')
- print(self.own_path)
- print(self.java_path)
- print(self.saxon_path)
- print(self.xsltproc_path)
- print(self.xslt_path)
- print(self.input)
- print(self.input_path)
- print(self.output)
+ print(' own_path: %s' % self.own_path)
+ print(' java_path: %s' % self.java_path)
+ print(' saxon_path: %s' % self.saxon_path)
+ print(' xsltproc_path: %s' % self.xsltproc_path)
+ print(' xslt_path: %s' % self.xslt_path)
+ print(' input: %s' % self.input)
+ print(' input_path: %s' % self.input_path)
+ print(' output: %s' % self.output)
# Precompute paths that will be used later.
self.output_dir = tempfile.mkdtemp().replace('\\', '/')
More information about the lyx-cvs
mailing list