diff options
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 8e685efa..a1a2f485 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(client)) + print(f'We have logged in as {client.user}') @client.event async def on_message(message): |