From 92610bf486be3bac7dabee97c20f5f47b747efd3 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Sun, 1 Mar 2015 09:00:38 -0800 Subject: [PATCH] enable python3 to run po/update_po.py --- po/update_po.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/update_po.py b/po/update_po.py index 2742c543b..2feac19b5 100644 --- a/po/update_po.py +++ b/po/update_po.py @@ -66,7 +66,7 @@ if sys.platform == 'win32': # Others OS -elif sys.platform in ['linux2', 'darwin', 'cygwin']: +elif sys.platform in ['linux', 'linux2', 'darwin', 'cygwin']: msgmergeCmd = 'msgmerge' msgfmtCmd = 'msgfmt' msgattribCmd = 'msgattrib'