diff options
author | remitamine <remitamine@gmail.com> | 2016-03-02 17:35:55 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-03-02 17:35:55 +0100 |
commit | e7d20845686e0a35fc386238713ea4bdde89bdcf (patch) | |
tree | ba3876eb5e0761966a1e7fb67a2d3caf84d063b1 | |
parent | c2d3cb4c63495ef9f825efe67ee61d77d6fab9c0 (diff) | |
parent | e38cafe986994d65230e6518752def8b53ad7308 (diff) |
Merge branch 'master' of github.com:rg3/youtube-dl
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index f4324039c..8f3a8b9e3 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1631,7 +1631,7 @@ class YoutubeDL(object): self.report_error('content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded)) return - if success: + if success and filename != '-': # Fixup content fixup_policy = self.params.get('fixup') if fixup_policy is None: |