aboutsummaryrefslogtreecommitdiff
path: root/cogs/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'cogs/admin.py')
-rwxr-xr-xcogs/admin.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cogs/admin.py b/cogs/admin.py
index 4d37003..1e3777b 100755
--- a/cogs/admin.py
+++ b/cogs/admin.py
@@ -23,8 +23,7 @@ class Admin(commands.Cog):
@commands.check(is_mod)
async def pull(self, ctx):
g = git.cmd.Git(os.getcwd())
- g.pull()
- await ctx.send("Probably pulled.")
+ await ctx.send(f"Probably pulled.\n```bash\n{g.pull()}```")
@commands.command(aliases=['addcommand', 'newcommand'])
@commands.check(is_mod)