diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-08-26 00:16:08 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-08-26 00:16:08 -0700 |
commit | 97a789f81cf38a890677e9b2e042d803ec631e1a (patch) | |
tree | 4f3dcd63a265e8921f5c7a83b37aa44ec16c1629 | |
parent | 1e540a254224a1b7f79e045d19be8f619c52368b (diff) | |
download | yt-local-97a789f81cf38a890677e9b2e042d803ec631e1a.tar.lz yt-local-97a789f81cf38a890677e9b2e042d803ec631e1a.tar.xz yt-local-97a789f81cf38a890677e9b2e042d803ec631e1a.zip |
Fix title attribute missing from title link for some items
-rw-r--r-- | youtube/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/common.py b/youtube/common.py index 41b5f63..384d560 100644 --- a/youtube/common.py +++ b/youtube/common.py @@ -75,7 +75,7 @@ medium_video_item_template = Template(''' <span class="video-duration">$duration</span> </a> - <a class="title" href="$url">$title</a> + <a class="title" href="$url" title="$title">$title</a> <div class="stats">$stats</div> |