Fixed #13239 -- Forced the deletion of the Popen object, avoiding a bug in Python's subprocess cleanup code.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12874 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
2a4990a5de
commit
aa53876610
|
@ -37,3 +37,4 @@ if xgettext_cmd:
|
||||||
xversion = (int(match.group('major')), int(match.group('minor')))
|
xversion = (int(match.group('major')), int(match.group('minor')))
|
||||||
if xversion >= (0, 15):
|
if xversion >= (0, 15):
|
||||||
from extraction import *
|
from extraction import *
|
||||||
|
del p
|
||||||
|
|
Loading…
Reference in New Issue