diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-02 20:28:18 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-02 20:28:18 +0100 |
commit | 9fffd0469f1353c5f5e96b91a87e34d02ae7491a (patch) | |
tree | 008c0e59f9f6a8c845824f2ae7920b75a644c12d /youtube_dl/downloader | |
parent | 469a64cebf534b702e50ad9585e63ae3f8ed5d16 (diff) |
[options] Mark --fixup as non-experimental and correct its help
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r-- | youtube_dl/downloader/external.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index 012057ecb..e47e3bf4c 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -48,7 +48,7 @@ class ExternalFD(FileDownloader): def _source_address(self, command_option): command_part = [] source_address = self.ydl.params.get('source_address') - if source_address: + if source_address is None: command_part = [command_option, source_address] return command_part |