Remove site branding from title

This commit is contained in:
Abhorrent_Anger 2023-07-05 10:52:29 +03:00
parent 9c9eb76f86
commit 7d71e2648d
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ def enter_raffle(raffle):
'csrf' : csrf}
result = post_raw(BASE_URL + ENTER_RAFFLE_URL, data)
if result.status == 200:
print(colored('Succesfully entered ' + parsed_html.find('title').text + ' (' + raffle + ')!', 'green'))
print(colored('Succesfully entered ' + parsed_html.find('title').text[:-19] + ' (' + raffle + ')!', 'green'))
time.sleep(5)
return result