diff options
| author | pikaninja <[email protected]> | 2021-04-09 15:05:33 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-09 18:05:33 -0400 |
| commit | 1952060e1af7224ed7b67bc957e47247f6b50493 (patch) | |
| tree | 3f24fb4f37ac1a83aa02b50bca9b22dbf75fc3a1 /examples/edits.py | |
| parent | Remove user token warning in login (diff) | |
| download | discord.py-1952060e1af7224ed7b67bc957e47247f6b50493.tar.xz discord.py-1952060e1af7224ed7b67bc957e47247f6b50493.zip | |
make examples on_ready consistent
Diffstat (limited to 'examples/edits.py')
| -rw-r--r-- | examples/edits.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/edits.py b/examples/edits.py index 375a9bde..36786046 100644 --- a/examples/edits.py +++ b/examples/edits.py @@ -3,8 +3,8 @@ import asyncio class MyClient(discord.Client): async def on_ready(self): - print('Connected!') - print(f'Username: {self.user.name}\nID: {self.user.id}') + print(f'Logged in as {self.user} (ID: {self.user.id})') + print('------') async def on_message(self, message): if message.content.startswith('!editme'): |