diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-06-15 13:04:36 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-06-15 13:04:36 +0800 |
commit | 6a9cb29509a3b1fa2c1ffce82acb2fa7a2699c29 (patch) | |
tree | 30e202c4bd491cd08a3970ab0a79344d043bd2c0 /youtube_dl/extractor | |
parent | ca270371718fda18b3331dd645a200a365b096c9 (diff) |
[extractor/common] Fix json dumping with --geo-bypass
The line "[debug] Using fake IP %s (%s) as X-Forwarded-For." was printed
to stdout even with -j/-J, which breaks the resultant JSON.
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 941385ae2..6e415ea41 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -420,7 +420,7 @@ class InfoExtractor(object): if country_code: self._x_forwarded_for_ip = GeoUtils.random_ipv4(country_code) if self._downloader.params.get('verbose', False): - self._downloader.to_stdout( + self._downloader.to_screen( '[debug] Using fake IP %s (%s) as X-Forwarded-For.' % (self._x_forwarded_for_ip, country_code.upper())) |