aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube/common.py')
-rw-r--r--youtube/common.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/youtube/common.py b/youtube/common.py
index b8fe751..6994064 100644
--- a/youtube/common.py
+++ b/youtube/common.py
@@ -58,7 +58,7 @@ medium_playlist_item_template = Template('''
</div>
</a>
- <a class="title" href="$url" title=$title>$title</a>
+ <a class="title" href="$url" title="$title">$title</a>
<address><a href="$author_url">$author</a></address>
</div>
@@ -73,10 +73,6 @@ medium_video_item_template = Template('''
<a class="title" href="$url">$title</a>
<div class="stats">$stats</div>
- <!--
- <address><a href="$author_url">$author</a></address>
- <span class="views">$views</span>
- <time datetime="$datetime">Uploaded $published</time>-->
<span class="description">$description</span>
<span class="badges">$badges</span>
@@ -477,7 +473,7 @@ def video_item_html(item, template, html_exclude=set()):
return template.substitute(html_ready)
-def playlist_item_html(item, template, html_exlude=set()):
+def playlist_item_html(item, template, html_exclude=set()):
html_ready = get_html_ready(item)
html_ready['url'] = URL_ORIGIN + "/playlist?list=" + html_ready['id']