You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you so much for making this incredibly helpful tool! It's working beautifully for us, we just had some problems deploying a web application which was using it on IIS.
I had to change line 56 of pyexifinfo.py from this:
s = subprocess.Popen(cmd, stdout=subprocess.PIPE)
to this:
s = subprocess.Popen(cmd, stdout=subp.PIPE, stdin=subp.PIPE, stderr=subp.STDOUT)
The text was updated successfully, but these errors were encountered:
Thank you so much for making this incredibly helpful tool! It's working beautifully for us, we just had some problems deploying a web application which was using it on IIS.
Related to this issue
http://stackoverflow.com/questions/10290990/subprocess-popen-not-working-with-pythonw-exe
I had to change line 56 of pyexifinfo.py from this:
s = subprocess.Popen(cmd, stdout=subprocess.PIPE)
to this:
s = subprocess.Popen(cmd, stdout=subp.PIPE, stdin=subp.PIPE, stderr=subp.STDOUT)
The text was updated successfully, but these errors were encountered: