Fix Python 3 errors with rmtp downloads

This commit is contained in:
Philipp Hagemeister 2013-03-03 22:38:38 +01:00
parent f918ec7ea2
commit 967897fd22

View File

@ -575,7 +575,7 @@ def _download_with_rtmpdump(self, filename, url, player_url, page_url):
# Check for rtmpdump first
try:
subprocess.call(['rtmpdump', '-h'], stdout=(file(os.path.devnull, 'w')), stderr=subprocess.STDOUT)
subprocess.call(['rtmpdump', '-h'], stdout=(open(os.path.devnull, 'w')), stderr=subprocess.STDOUT)
except (OSError, IOError):
self.trouble(u'ERROR: RTMP download detected but "rtmpdump" could not be run')
return False