From f40c5eae0e70ec453f1a5266d34d4d9fee91e752 Mon Sep 17 00:00:00 2001 From: Raatty <39517058+Raatty@users.noreply.github.com> Date: Wed, 23 May 2018 22:41:34 +1200 Subject: [PATCH] displays git url when you do git command with no arguments --- src/cogs/git.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cogs/git.py b/src/cogs/git.py index b1072a3..2354a42 100644 --- a/src/cogs/git.py +++ b/src/cogs/git.py @@ -43,7 +43,8 @@ class Git: @commands.group(case_insensitive=True) async def git(self, ctx): """Run help git for more info""" - pass + if ctx.invoked_subcommand is None: + ctx.send('https://github.com/Annihilator708/Sebi-Machine/') @git.command() async def pull(self, ctx):