Skip to content

Commit 608f0f9

Browse files
author
Sebastian Barfurth
authored
Remove subdomain due to updated website
1 parent 252eda8 commit 608f0f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/jokes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ def boobies(text, conn):
9191
def awesome(text, message):
9292
"""Prints a webpage to show <nick> how awesome they are."""
9393
nick_re = re.compile("^[A-Za-z0-9_|.\-\]\[]*$", re.I)
94-
link = 'http://{}.is-awesome.cool/{}'
94+
link = 'http://is-awesome.cool/{}'
9595
nick = text.split(' ')[0]
9696
if nick_re.match(nick):
97-
message("{}: I am blown away by your recent awesome action(s). Please read \x02{}\x02".format(nick, link.format(nick, nick)))
97+
message("{}: I am blown away by your recent awesome action(s). Please read \x02{}\x02".format(nick, link.format(nick)))
9898
else:
9999
return "Sorry I can't tell {} how awesome they are.".format(nick)
100100

0 commit comments

Comments
 (0)