aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/clipsyndicate.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-20 22:11:34 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-20 22:11:34 +0100
commit5aafe895fce2a7be9595cb2e56b7bd73a748e6b6 (patch)
tree092e8e5663aceb9adb7475b5b2d9c9b7ee7a84e6 /youtube_dl/extractor/clipsyndicate.py
parentb853d2e1555dbb4a09fe3d7857c6d2bc044646f4 (diff)
downloadyoutube-dl-5aafe895fce2a7be9595cb2e56b7bd73a748e6b6.tar.xz
Correct XML ampersand fixup
Diffstat (limited to 'youtube_dl/extractor/clipsyndicate.py')
-rw-r--r--youtube_dl/extractor/clipsyndicate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/clipsyndicate.py b/youtube_dl/extractor/clipsyndicate.py
index c60089ad3..9ab6a4ab6 100644
--- a/youtube_dl/extractor/clipsyndicate.py
+++ b/youtube_dl/extractor/clipsyndicate.py
@@ -3,7 +3,7 @@ import re
from .common import InfoExtractor
from ..utils import (
find_xpath_attr,
- fix_xml_all_ampersand,
+ fix_xml_ampersands
)
@@ -33,7 +33,7 @@ class ClipsyndicateIE(InfoExtractor):
pdoc = self._download_xml(
'http://eplayer.clipsyndicate.com/osmf/playlist?%s' % flvars,
video_id, u'Downloading video info',
- transform_source=fix_xml_all_ampersand)
+ transform_source=fix_xml_ampersands)
track_doc = pdoc.find('trackList/track')
def find_param(name):