From 346364b938ed0b32a064c095fd9ab47726b1bb05 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Thu, 20 Feb 2014 16:45:14 +0100 Subject: [PATCH] Fix previous commit --- modules/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index c077718..5a59f03 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -3039,7 +3039,7 @@ def my_stats_pm(cli, nick, rest): @cmd("pull", admin_only=True) def git_pull(cli, nick, chan, rest): try: - output = subprocess.check_output(('git', 'pull')): + output = subprocess.check_output(('git', 'pull')) except Exception as e: cli.msg(chan, '{0}:{1}'.format(type(e), e)) raise