diff options
author | Jesús <heckyel@hyperbola.info> | 2019-12-04 23:46:18 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-12-04 23:46:18 -0500 |
commit | c5e51fdb152d670e98a88e47280ba439f7679024 (patch) | |
tree | 007f81d0f11dfe2ceee8117482974fd45b47fd2f | |
parent | 4a6a052b5c97cc286f198886003281ee9be0aaef (diff) | |
download | livie-c5e51fdb152d670e98a88e47280ba439f7679024.tar.lz livie-c5e51fdb152d670e98a88e47280ba439f7679024.tar.xz livie-c5e51fdb152d670e98a88e47280ba439f7679024.zip |
format strings traditional mode
-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 |