aboutsummaryrefslogtreecommitdiff
path: root/examples/basic_voice.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basic_voice.py')
-rw-r--r--examples/basic_voice.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/basic_voice.py b/examples/basic_voice.py
index d7e82e6d..ccb01044 100644
--- a/examples/basic_voice.py
+++ b/examples/basic_voice.py
@@ -128,7 +128,9 @@ bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"),
@bot.event
async def on_ready():
- print(f'Logged in as {bot.user} ({bot.user.id})')
+ print('Logged in as')
+ print(bot.user.name)
+ print(bot.user.id)
print('------')
bot.add_cog(Music(bot))