Added minor documentation

This commit is contained in:
Matthew Ramina
2013-11-28 22:23:32 -05:00
committed by mutantmonkey
parent d6e28ac26b
commit 9219308170
7 changed files with 15 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ def botfight(phenny, input):
phenny.do(response % otherbot)
botfight.commands = ['botfight']
botfight.priority = 'low'
botfight.example = '.botfight'
def bothug(phenny, input):
""".bothug - Hug the other bot in the channel."""
@@ -24,6 +25,7 @@ def bothug(phenny, input):
phenny.do("hugs %s" % otherbot)
bothug.commands = ['bothug']
bothug.priority = 'low'
bothug.example = '.bothug'
if __name__ == '__main__':
print(__doc__.strip())