From 64a5dd73e552e5671b1554fa38be8ce62662e7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 4 Dec 2019 23:50:07 -0500 Subject: minor fix format string --- livie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livie.py b/livie.py index 29dbff8..327f74a 100644 --- a/livie.py +++ b/livie.py @@ -22,7 +22,7 @@ def replace(string): for vid in SOUP.find_all(class_='yt-lockup-content'): try: - link = 'https://invidio.us/%s' % 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 -- cgit v1.2.3