From c1924546c41f48cd950bbbb53b079915bb8b84d0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 23 Jun 2016 09:56:53 +0530 Subject: [PATCH] Show traceback when invoking tx fails --- setup/translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/translations.py b/setup/translations.py index 6eaeda5da0..e41d36e144 100644 --- a/setup/translations.py +++ b/setup/translations.py @@ -33,7 +33,7 @@ class POT(Command): # {{{ kw['cwd'] = kw.get('cwd', self.TRANSLATIONS) if hasattr(cmd, 'format'): cmd = shlex.split(cmd) - return subprocess.check_call(['tx'] + cmd, **kw) + return subprocess.check_call(['tx', '--traceback'] + cmd, **kw) def git(self, cmd, **kw): kw['cwd'] = kw.get('cwd', self.TRANSLATIONS)