improve leftover print statements

This commit is contained in:
Kaaninchen
2026-07-17 01:22:34 +02:00
parent 723df6bf99
commit 43c9d2075f
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ async def rename_vc(bot: discord.Bot) -> bool:
train, destination, route, departure, via, station = random_connection()
name = f"{train} nach {destination}"
print(f"Info:{name} from {station}")
print(f"Info: {name} from {station}\n via: {via}")
await channel.edit(name=f"{config['formatting']}{name}")
return True