summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-10 01:37:14 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-10 01:37:14 +0100
commit834bf069d20745263586284c98196b5b0605b916 (patch)
treec85ac189128d28ca9f48f9bbc5505f2a90ce55df
parentc06a9fa34f41edf090f4beb385212e44a6e1bb08 (diff)
downloadyoutube-dl-834bf069d20745263586284c98196b5b0605b916.tar.gz
youtube-dl-834bf069d20745263586284c98196b5b0605b916.tar.xz
youtube-dl-834bf069d20745263586284c98196b5b0605b916.zip
[bandcamp] Correct variable name
-rw-r--r--youtube_dl/extractor/bandcamp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py
index 27d8652f6..490cc961a 100644
--- a/youtube_dl/extractor/bandcamp.py
+++ b/youtube_dl/extractor/bandcamp.py
@@ -79,7 +79,7 @@ class BandcampIE(InfoExtractor):
         # We get the dictionary of the track from some javascript code
         all_info = self._parse_json(self._search_regex(
             r'(?sm)items: (.*?),$', download_webpage, 'items'), video_id)
-        info = All_info[0]
+        info = all_info[0]
         # We pick mp3-320 for now, until format selection can be easily implemented.
         mp3_info = info['downloads']['mp3-320']
         # If we try to use this url it says the link has expired