aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Kaspar [Dee'Kej] <dkaspar@redhat.com>2018-05-14 13:03:18 +0200
committerDee'Kej <deekej@linuxmail.org>2018-05-14 13:15:48 +0200
commit721c3dd4e3ad8ad0dec5bed350bc2743e97d357f (patch)
tree5fac04fffefa6bd870f5c122804be83108bc36fc
parent1d8958cd062c9c5051d93b8d3b946a4384451374 (diff)
downloadinitscripts-721c3dd4e3ad8ad0dec5bed350bc2743e97d357f.tar
initscripts-721c3dd4e3ad8ad0dec5bed350bc2743e97d357f.tar.gz
initscripts-721c3dd4e3ad8ad0dec5bed350bc2743e97d357f.tar.bz2
initscripts-721c3dd4e3ad8ad0dec5bed350bc2743e97d357f.tar.xz
initscripts-721c3dd4e3ad8ad0dec5bed350bc2743e97d357f.zip
po/xgettext_sh.py: fix for indentation of previous commit
The tabs & spaces mixture caused bad script conversion and breaking the script completely...
-rwxr-xr-xpo/xgettext_sh.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/po/xgettext_sh.py b/po/xgettext_sh.py
index 0391d650..36ff02bb 100755
--- a/po/xgettext_sh.py
+++ b/po/xgettext_sh.py
@@ -62,7 +62,8 @@ def xgettext(arq):
p2 = p2 + 1
else:
break
- text = l[p1:p2]
+
+ text = l[p1:p2]
if text in s:
s[text].append((arq, line))