fix: correct syntax error in handle_index by removing stray equals sign
This commit is contained in:
Vendored
BIN
Binary file not shown.
Vendored
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1
-1
@@ -268,7 +268,7 @@ async def handle_index(request: web.Request):
|
|||||||
if "is available here: " in message:
|
if "is available here: " in message:
|
||||||
url = message[message.find("here: ") + len("here: "):]
|
url = message[message.find("here: ") + len("here: "):]
|
||||||
message = message[: message.find("here: ")+len("here: ")]
|
message = message[: message.find("here: ")+len("here: ")]
|
||||||
message = += f"<a href=\"{url}\">"
|
message += f"<a href=\"{url}\">"
|
||||||
message += f"{url}</a>"
|
message += f"{url}</a>"
|
||||||
if message:
|
if message:
|
||||||
message += "<br /><br />"
|
message += "<br /><br />"
|
||||||
|
|||||||
Reference in New Issue
Block a user