From addf9af51a00819f9e819b6477156564ee70818b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 7 Mar 2019 10:22:39 +0530 Subject: [PATCH] Fix generation of trnaslation template for website --- setup/translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/translations.py b/setup/translations.py index fa3507b699..5549bffd7f 100644 --- a/setup/translations.py +++ b/setup/translations.py @@ -138,7 +138,7 @@ class POT(Command): # {{{ def get_website_strings(self): self.info('Generating translation template for website') self.wn_path = os.path.expanduser('~/work/srv/main/static/generate.py') - data = subprocess.check_output([self.wn_path, '--pot']) + data = subprocess.check_output([self.wn_path, '--pot', '/tmp/wn']) bdir = os.path.join(self.TRANSLATIONS, 'website') if not os.path.exists(bdir): os.makedirs(bdir)