aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-05-13 12:32:42 +0200
committerMattias Andrée <maandree@operamail.com>2013-05-13 12:32:42 +0200
commitcad9f99a451ffe5c53a4e77848e386dbf3a407e1 (patch)
tree3c47f73f31b7b74811486ea70e5a9bbe5477923e /src
parentassembly image (diff)
downloadsplashtool-cad9f99a451ffe5c53a4e77848e386dbf3a407e1.tar.gz
splashtool-cad9f99a451ffe5c53a4e77848e386dbf3a407e1.tar.bz2
splashtool-cad9f99a451ffe5c53a4e77848e386dbf3a407e1.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rwxr-xr-xsrc/parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.py b/src/parse.py
index e02bd61..ad7498b 100755
--- a/src/parse.py
+++ b/src/parse.py
@@ -128,7 +128,7 @@ title = (' ' * ((68 - len(title)) // 2) + title + ' ' * 68)[:68]
title = '\033' + colour_title + '\033' + title + '\033\033'
helpmsgendrow -= vshift
-helptext = (helptext + '\n' * (helpmsgendrow - helpmsgrow + 2)).split('\n')[: helpmsgendrow - helpmsgrow + 2]
+helptext = (helptext + '\n' * (helpmsgendrow - helpmsgrow + 1)).split('\n')[: helpmsgendrow - helpmsgrow + 1]
helptext = ['\033' + colour_help + '\033' + (' ' * margin + x + ' ' * width)[:width] + '\033\033' for x in helptext]
helptext = '\n'.join(helptext)