Make genpopo and translation_tool scripts to use python2 instead of now default python3. Hopely someone will convert these to python3 compliant form.
-- (\_ /) copy the bunny to your profile (0.o ) to help him achieve world domination. (> <) come join the dark side. /_|_\ (we have cookies.)
From 7c2a3189ba2605f0ac3aa7b24b9c948e282dc2ad Mon Sep 17 00:00:00 2001 From: Jesse Jaara <jesse.ja...@gmail.com> Date: Sun, 5 Dec 2010 00:33:37 +0200 Subject: [PATCH] Fix genpopo and translation_tool to use python2, while waiting someone to make them python3 compliant. Signed-off-by: Jesse Jaara <jesse.ja...@gmail.com> --- web/lang/genpopo | 2 +- web/lang/translation_tool | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/lang/genpopo b/web/lang/genpopo index 66bf9a1..33ea984 100755 --- a/web/lang/genpopo +++ b/web/lang/genpopo @@ -1,4 +1,4 @@ -#! /usr/bin/python -O +#! /usr/bin/python2 -O # -*- coding: iso-8859-1 -*- # This script iterates through the script directories diff --git a/web/lang/translation_tool b/web/lang/translation_tool index 241f1ee..75d5ce6 100755 --- a/web/lang/translation_tool +++ b/web/lang/translation_tool @@ -1,4 +1,4 @@ -#! /usr/bin/python -O +#! /usr/bin/python2 -O # -*- coding: iso-8859-1 -*- # This script iterates through the html, lib, and template directories -- 1.7.3.2