From: Clinton Ebadi Date: Sat, 12 Feb 2022 19:51:09 +0000 (-0500) Subject: party-upload: fix artist links X-Git-Url: https://git.hcoop.net/clinton/unknownlamer-kodi-addons.git/commitdiff_plain party-upload: fix artist links --- diff --git a/party-upload/partyparty.py b/party-upload/partyparty.py index 377e998..e225834 100644 --- a/party-upload/partyparty.py +++ b/party-upload/partyparty.py @@ -203,7 +203,7 @@ class Playlist: with tag ('li'): with tag ('div', klass = 'flex_row'): with tag ('p'): - with tag ('a', href = '{1}?searchgo=1&searchterm={0};searchfield=artist'.format(song.artist, PAGE_SELF)): + with tag ('a', href = '{1}?searchgo=1&searchterm={0}&searchfield=artist'.format(song.artist, PAGE_SELF)): text (song.artist) text (' ({}) {}'.format(song.album, song.label)) doc.asis (SongControls (song, controls).controls())