Skip to content

Commit

Permalink
Fix #11
Browse files Browse the repository at this point in the history
  • Loading branch information
Martmists-GH authored Jul 12, 2017
1 parent 6632723 commit ba40a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ bot = asynctwitch.CommandBot(
# Example command:
@bot.command('example', alias=['moreexample','anothaone'], desc='example command')
async def example(message, word1:str, number1:int, rest:str):
bot.say('wow')
bot.say(message.channel.name, 'wow')



Expand All @@ -41,7 +41,7 @@ async def say(m, subcommand:str):

@say.subcommand('this')
async def this(m):
bot.say("that")
bot.say(m.channel.name, "that")

bot.start()
```
Expand Down

0 comments on commit ba40a0c

Please sign in to comment.