Skip to content

Commit 3932871

Browse files
authored
Update foaas.py
minor bug fixing before final commit.
1 parent e0f837b commit 3932871

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

plugins/foaas.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464

6565
@hook.command('fos','fuckoff','foaas')
6666
def foaas(text, nick, message):
67-
""".fos [name] to tell some one to fuck off or just .fos for a generic fuckoff"""
67+
'''fos [name] to tell some one to fuck off or just .fos for a generic fuckoff'''
6868
Fuckee = text.strip()
6969
Fucker = nick
70-
if fuckee == '':
71-
r = requests.get('http://www.foaas.com?' + str(random.choice(SingleFuckList)) + Fucker,headers=headers)
70+
if Fuckee == '':
71+
r = requests.get('http://www.foaas.com/' + str(random.choice(SingleFuckList)) + Fucker,headers=headers)
7272
out = r.text
7373
message(out)
7474
else:

0 commit comments

Comments
 (0)