diff options
Diffstat (limited to 'livie.py')
-rw-r--r-- | livie.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ def replace(string): for vid in SOUP.find_all(class_='yt-lockup-content'): try: - link = 'https://invidio.us' + vid.h3.a['href'] + link = 'https://invidio.us/%s' % vid.h3.a['href'] title = vid.h3.a.text description = vid.h3.span.text author = vid.find(class_='yt-lockup-byline').a.text |