diff --git a/README.md b/README.md index 1b066fa..d4706c6 100755 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # AutoBotRobot -https://discordapp.com/oauth2/authorize?&client_id=509849474647064576&scope=bot&permissions=68608 \ No newline at end of file +A Discord bot which exists. +You can add it to your server with this link: https://discordapp.com/oauth2/authorize?&client_id=509849474647064576&scope=bot&permissions=68608 \ No newline at end of file diff --git a/src/main.py b/src/main.py index 713619b..1359962 100644 --- a/src/main.py +++ b/src/main.py @@ -70,7 +70,7 @@ async def delete(ctx, *, raw_target): @bot.command(help="View recently deleted things, optionally matching a filter.") async def list_deleted(ctx, search=None): acc = "Recently deleted:\n" - if search: acc = f"Recently deleted (matching {search}" + if search: acc = f"Recently deleted (matching {search}):\n" csr = None if search: csr = database.execute("SELECT * FROM deleted_items WHERE item LIKE ? ORDER BY timestamp DESC LIMIT 100", (f"%{search}%",))