mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
Add links to the output of [p]repo list (#6284)
Co-authored-by: Seaswimmer <102361830+SeaswimmerTheFsh@users.noreply.github.com> Co-authored-by: Kreusada <67752638+Kreusada@users.noreply.github.com>
This commit is contained in:
parent
4134881fae
commit
30058c0f73
@ -648,14 +648,18 @@ class Downloader(commands.Cog):
|
|||||||
joined = _("There are no repos installed.")
|
joined = _("There are no repos installed.")
|
||||||
else:
|
else:
|
||||||
if len(repos) > 1:
|
if len(repos) > 1:
|
||||||
joined = _("# Installed Repos\n")
|
joined = _("## Installed Repos\n")
|
||||||
else:
|
else:
|
||||||
joined = _("# Installed Repo\n")
|
joined = _("## Installed Repo\n")
|
||||||
for repo in sorted_repos:
|
for repo in sorted_repos:
|
||||||
joined += "+ {}: {}\n".format(repo.name, repo.short or "")
|
joined += "- **{}:** {}\n - {}\n".format(
|
||||||
|
repo.name,
|
||||||
|
repo.short or "",
|
||||||
|
"<{}>".format(repo.url),
|
||||||
|
)
|
||||||
|
|
||||||
for page in pagify(joined, ["\n"], shorten_by=16):
|
for page in pagify(joined, ["\n"], shorten_by=16):
|
||||||
await ctx.send(box(page.lstrip(" "), lang="markdown"))
|
await ctx.send(page)
|
||||||
|
|
||||||
@repo.command(name="info")
|
@repo.command(name="info")
|
||||||
async def _repo_info(self, ctx: commands.Context, repo: Repo) -> None:
|
async def _repo_info(self, ctx: commands.Context, repo: Repo) -> None:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user