diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-09-16 02:28:28 +0800 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-16 02:28:28 +0800 | 
| commit | a88d461dff67205fcec684426afbcbeb4b0e7cf5 (patch) | |
| tree | f5a0ba57242b84aafba2c37740855f9169f47a8d /youtube_dl/YoutubeDL.py | |
| parent | a4245acef85ac2414e77cf2cda4cb39adb617241 (diff) | |
| parent | feee8d32e45c9521426cf4a089c70f37542f0065 (diff) | |
Merge pull request #14225 from Tithen-Firion/openload-phantomjs-method
Openload phantomjs method
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
| -rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 5405a87c5..bfb4ff225 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -89,6 +89,7 @@ from .utils import (      write_string,      YoutubeDLCookieProcessor,      YoutubeDLHandler, +    PhantomJSwrapper,  )  from .cache import Cache  from .extractor import get_info_extractor, gen_extractor_classes, _LAZY_LOADER @@ -2217,6 +2218,7 @@ class YoutubeDL(object):          exe_versions = FFmpegPostProcessor.get_versions(self)          exe_versions['rtmpdump'] = rtmpdump_version() +        exe_versions['phantomjs'] = PhantomJSwrapper._version()          exe_str = ', '.join(              '%s %s' % (exe, v)              for exe, v in sorted(exe_versions.items()) | 
