From 62c5549eb601d957e3931874023d9471e8830348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 20 Nov 2020 09:57:00 +0100 Subject: [PATCH] build: don't let a compilemessages failure abort the build (#48707) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index baf0421..92655da 100755 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ class compile_translations(Command): def run(self): django_admin = find_executable('django-admin') if django_admin: - subprocess.check_call([django_admin, 'compilemessages']) + subprocess.call([django_admin, 'compilemessages']) class build(_build):