Changed subprocess stdin from devnull to None

This commit is contained in:
Andrew Murray 2019-01-17 11:08:50 +11:00
parent 74ce856515
commit 258ec6d129

View File

@ -144,7 +144,7 @@ def Ghostscript(tile, size, fp, scale=1):
if sys.platform.startswith('win'):
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
subprocess.check_call(command, stdin=devnull, stdout=devnull,
subprocess.check_call(command, stdout=devnull,
startupinfo=startupinfo)
im = Image.open(outfile)
im.load()