aboutsummaryrefslogtreecommitdiffstats
path: root/po/xgettext_sh
diff options
context:
space:
mode:
Diffstat (limited to 'po/xgettext_sh')
-rw-r--r--po/xgettext_sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/po/xgettext_sh b/po/xgettext_sh
index a9f1f6de..d0550ce6 100644
--- a/po/xgettext_sh
+++ b/po/xgettext_sh
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
# xgettext_sh -- extracts translatable strings from a shell script
# Copyright (C) 1999 Conectiva Consultoria e Desenvolvimento de Sistemas LTDA
@@ -18,10 +18,11 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
from sys import path
+
if not '/usr/lib/conectiva/xgettext_sh' in path:
path[:0] = ['/usr/lib/conectiva/xgettext_sh']
from xgettext_sh import main
if __name__ == '__main__':
- main()
+ main()