We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0f837b commit 3932871Copy full SHA for 3932871
1 file changed
plugins/foaas.py
@@ -64,11 +64,11 @@
64
65
@hook.command('fos','fuckoff','foaas')
66
def foaas(text, nick, message):
67
- """.fos [name] to tell some one to fuck off or just .fos for a generic fuckoff"""
+ '''fos [name] to tell some one to fuck off or just .fos for a generic fuckoff'''
68
Fuckee = text.strip()
69
Fucker = nick
70
- if fuckee == '':
71
- r = requests.get('http://www.foaas.com?' + str(random.choice(SingleFuckList)) + Fucker,headers=headers)
+ if Fuckee == '':
+ r = requests.get('http://www.foaas.com/' + str(random.choice(SingleFuckList)) + Fucker,headers=headers)
72
out = r.text
73
message(out)
74
else:
0 commit comments