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)