[V3] Update some user facing info (remove old, outdated info) (#1613)

* remove outdated link in favor of in docstring docsumentation

* Update default Downloader repo url to org repo url (don't rely on github redirect)
This commit is contained in:
Michael H 2018-05-08 16:27:38 -04:00 committed by Kowlin
parent 53650aefa6
commit e86698cfeb
2 changed files with 13 additions and 2 deletions

View File

@ -179,7 +179,18 @@ class CustomCommands:
ctx: commands.Context): ctx: commands.Context):
""" """
CCs can be enhanced with arguments: CCs can be enhanced with arguments:
https: // twentysix26.github.io / Red - Docs / red_guide_command_args/
Argument What it will be substituted with
{message} message
{author} message.author
{channel} message.channel
{guild} message.guild
{server} message.guild
""" """
if not ctx.invoked_subcommand or isinstance(ctx.invoked_subcommand, if not ctx.invoked_subcommand or isinstance(ctx.invoked_subcommand,
commands.Group): commands.Group):

View File

@ -420,7 +420,7 @@ class Downloader:
cog_name = cog_installable.name cog_name = cog_installable.name
else: else:
made_by = "26 & co." made_by = "26 & co."
repo_url = "https://github.com/Twentysix26/Red-DiscordBot" repo_url = "https://github.com/Cog-Creators/Red-DiscordBot"
cog_name = cog_installable.__class__.__name__ cog_name = cog_installable.__class__.__name__
msg = _("Command: {}\nMade by: {}\nRepo: {}\nCog name: {}") msg = _("Command: {}\nMade by: {}\nRepo: {}\nCog name: {}")