make sure subprocess is available so we can set startupinfo

This commit is contained in:
Damien Elmes 2010-12-11 18:36:01 +09:00
parent 7ab5a53e38
commit 58b20b0626

View file

@ -8,7 +8,7 @@ Latex support
""" """
__docformat__ = 'restructuredtext' __docformat__ = 'restructuredtext'
import re, tempfile, os, sys, shutil, cgi import re, tempfile, os, sys, shutil, cgi, subprocess
from anki.utils import genID, checksum, call from anki.utils import genID, checksum, call
from anki.hooks import addHook from anki.hooks import addHook
from htmlentitydefs import entitydefs from htmlentitydefs import entitydefs