diff options
| author | Rapptz <[email protected]> | 2016-04-08 22:02:38 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-04-08 22:02:38 -0400 |
| commit | 72e84a1b47049d44498738458f8bf89c302a033a (patch) | |
| tree | a3dbf45c3063494cafa2a8898e6e401ca686d8db /examples/edits.py | |
| parent | Change login, start and run to be variadic. (diff) | |
| download | discord.py-72e84a1b47049d44498738458f8bf89c302a033a.tar.xz discord.py-72e84a1b47049d44498738458f8bf89c302a033a.zip | |
Change all email/password pair examples to use token.
Diffstat (limited to 'examples/edits.py')
| -rw-r--r-- | examples/edits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/edits.py b/examples/edits.py index a10393a0..deac246f 100644 --- a/examples/edits.py +++ b/examples/edits.py @@ -21,4 +21,4 @@ async def on_message_edit(before, after): fmt = '**{0.author}** edited their message:\n{1.content}' await client.send_message(after.channel, fmt.format(after, before)) -client.run('email', 'password') +client.run('token') |