This commit is contained in:
Fletcher Boyd 2013-09-05 09:46:49 +08:00
parent 2812569593
commit 7ab4f756fe
22 changed files with 69 additions and 78 deletions

View file

@ -100,7 +100,7 @@ def insult(inp, nick=None, me=None, conn=None, notice=None):
else:
target = inp
out = 'insults %s... "%s"' % (target, random.choice(insults))
out = 'insults {}... "{}"'.format(target, random.choice(insults))
me(out)
@ -118,5 +118,5 @@ def flirt(inp, me=None, conn=None, notice=None):
else:
target = inp
out = 'flirts with %s... "%s"' % (target, random.choice(flirts))
out = 'flirts with {}... "{}"'.format(target, random.choice(flirts))
me(out)