Skip to content

Commit

Permalink
Merge pull request #465 from Resousse/fix-issue-464
Browse files Browse the repository at this point in the history
Solve issue 464 by removing the extra +
  • Loading branch information
thewhiteh4t authored Aug 27, 2023
2 parents d0d309d + be445c2 commit 42048c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seeker.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def send_telegram(content):
if rqst:
utils.print(f'{G}[+] {C}Successfully sent to Telegram bot {W}')
else:
utils.print(f'{R}[-] {C}Unable to send to Telegram bot {W}\n{rqst.status_code} => {+rqst.text}')
utils.print(f'{R}[-] {C}Unable to send to Telegram bot {W}\n{rqst.status_code} => {rqst.text}')


def template_select(site):
Expand Down

0 comments on commit 42048c6

Please sign in to comment.