diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-21 22:51:58 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-21 22:51:58 +0600 |
commit | 5ef5d25b150a383362aab046394849ed523b3730 (patch) | |
tree | f0a3152a6c586205d60c43a463537922857a33a0 /youtube_dl | |
parent | 0f15ad7b9b6cae4e8719d2b960d8e882963f7a5b (diff) |
[audiomack] Fix typo (Closes #7936)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/audiomack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/audiomack.py b/youtube_dl/extractor/audiomack.py index 693ba22c6..3eed91279 100644 --- a/youtube_dl/extractor/audiomack.py +++ b/youtube_dl/extractor/audiomack.py @@ -56,7 +56,7 @@ class AudiomackIE(InfoExtractor): # API is inconsistent with errors if 'url' not in api_response or not api_response['url'] or 'error' in api_response: - raise ExtractorError('Invalid url %s', url) + raise ExtractorError('Invalid url %s' % url) # Audiomack wraps a lot of soundcloud tracks in their branded wrapper # if so, pass the work off to the soundcloud extractor |