We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f046ce commit a99b32aCopy full SHA for a99b32a
1 file changed
plugins/issafe.py
@@ -33,7 +33,7 @@ def issafe(text):
33
parsed = requests.get(API_SB, params={"url": text, "client": "cloudbot", "key": dev_key, "pver": "3.1", "appver": str(cloudbot.__version__)})
34
35
if parsed.status_code == 204:
36
- condition = "This website is safe."
+ condition = "\x02{}\x02 is safe.".format(text)
37
else:
38
- condition = "This site is known to contain: {}".format(parsed.text)
+ condition = "\x02{}\x02 is known to contain: {}".format(text, parsed.text)
39
return condition
0 commit comments