diff options
author | Bill Nottingham <notting@redhat.com> | 2001-01-17 22:11:00 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-01-17 22:11:00 +0000 |
commit | e77cf44ac518696fa103ba1b15042d7c436e251d (patch) | |
tree | 827371072471113c9db3279b63650e2ecc642f44 /po/xgettext_sh.py | |
parent | da461a0e0831591d5ca83b33c9f9ea11bca3268c (diff) | |
download | initscripts-e77cf44ac518696fa103ba1b15042d7c436e251d.tar initscripts-e77cf44ac518696fa103ba1b15042d7c436e251d.tar.gz initscripts-e77cf44ac518696fa103ba1b15042d7c436e251d.tar.bz2 initscripts-e77cf44ac518696fa103ba1b15042d7c436e251d.tar.xz initscripts-e77cf44ac518696fa103ba1b15042d7c436e251d.zip |
fix invocation
Diffstat (limited to 'po/xgettext_sh.py')
-rw-r--r-- | po/xgettext_sh.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/po/xgettext_sh.py b/po/xgettext_sh.py index 99b331b6..f26dd830 100644 --- a/po/xgettext_sh.py +++ b/po/xgettext_sh.py @@ -76,13 +76,11 @@ def print_pot(): def main(): i18n_tokens = [] i18n_tokens.append('gprintf') - if '--initscripts' in argv: - i18n_tokens.append('action') - i18n_tokens.append('failure') - i18n_tokens.append('passed') - i18n_tokens.append('runcmd') - i18n_tokens.append('success') - argv.remove('--initscripts') + i18n_tokens.append('action') + i18n_tokens.append('failure') + i18n_tokens.append('passed') + i18n_tokens.append('runcmd') + i18n_tokens.append('success') for a in argv: xgettext(a, i18n_tokens) |