remove procin terminate. Fixes #568

This commit is contained in:
clinton-hall 2014-09-27 06:20:38 +09:30
parent 5653134596
commit e1e6ebe2bf

View file

@ -99,8 +99,6 @@ def getVideoDetails(videofile, img=None, bitbucket=None):
proc = subprocess.Popen(command, stdout=subprocess.PIPE)
out, err = proc.communicate()
result = proc.returncode
if procin:
procin.terminate()
video_details = json.loads(out)
except:
logger.error("Checking [%s] has failed" % (file), 'TRANSCODER')