1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Refs #31692 -- Fixed compilemessages crash on Windows with Python < 3.8.

Regression in ed0a040773.
See https://bugs.python.org/issue31961
This commit is contained in:
Mariusz Felisiak
2020-06-23 11:14:27 +02:00
committed by GitHub
parent cc7c16af98
commit 02ea98bc2f

View File

@@ -154,7 +154,9 @@ class Command(BaseCommand):
self.has_errors = True
return
args = [self.program, *self.program_options, '-o', mo_path, po_path]
# PY37: Remove str() when dropping support for PY37.
# https://bugs.python.org/issue31961
args = [self.program, *self.program_options, '-o', str(mo_path), str(po_path)]
futures.append(executor.submit(popen_wrapper, args))
for future in concurrent.futures.as_completed(futures):