diff options
| author | Rapptz <[email protected]> | 2017-06-12 17:39:12 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-06-12 17:39:12 -0400 |
| commit | efe8fbf6edc89b3165258ca221e15d8354900e63 (patch) | |
| tree | bf72ef0a393c491b37356a4376247daaf5443af8 /docs/quickstart.rst | |
| parent | Downgrade PartialReactionEmoji to str in non-raw reaction events. (diff) | |
| download | discord.py-efe8fbf6edc89b3165258ca221e15d8354900e63.tar.xz discord.py-efe8fbf6edc89b3165258ca221e15d8354900e63.zip | |
Fix format string in documentation.
Diffstat (limited to 'docs/quickstart.rst')
| -rw-r--r-- | docs/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 12e97016..c1ffb85d 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -23,7 +23,7 @@ It looks something like this: @client.event async def on_ready(): - print('We have logged in as {0.user}'.format(self)) + print('We have logged in as {0.user}'.format(client)) @client.event async def on_message(message): |