From 07bf41ea6c3fd299afdd2f9d1c3fad7a9dd1853a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Tue, 12 Mar 2013 19:56:19 +0100 Subject: [PATCH] Made commands little shorter --- kcc/comic2ebook.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py index d0d9b1c..24a8995 100755 --- a/kcc/comic2ebook.py +++ b/kcc/comic2ebook.py @@ -461,9 +461,9 @@ def main(argv=None): help="Comic title [Default=filename]") parser.add_option("-m", "--manga-style", action="store_true", dest="righttoleft", default=False, help="Manga style (Right-to-left reading and splitting) [Default=False]") - parser.add_option("--fakepanelview", action="store_true", dest="fakepanelview", default=False, + parser.add_option("--panelview", action="store_true", dest="fakepanelview", default=False, help="Emulate Panel View feature (For Kindle 4 NT or older) [Default=False]") - parser.add_option("--fakepanelviewlandscape", action="store_true", dest="fakepanelviewlandscape", default=False, + parser.add_option("--panelviewlandscape", action="store_true", dest="fakepanelviewlandscape", default=False, help="Emulate Panel View feature - Landscape mode (For Kindle 4 NT or older) [Default=False]") parser.add_option("--noprocessing", action="store_false", dest="imgproc", default=True, help="Do not apply image preprocessing (Page splitting and optimizations) [Default=True]")