From 1aa864110231ff45d2e4e3717ab90e7699bec57b Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Sat, 22 Mar 2014 12:19:17 +0100 Subject: [PATCH] Minor cosmetic fix for exceptions in !pull A space was missing after the colon following the exception name. --- modules/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 7817d11..a0d7c92 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -3077,7 +3077,7 @@ def git_pull(cli, nick, chan, rest): try: output = subprocess.check_output(('git', 'pull')) except Exception as e: - cli.msg(chan, '{0}:{1}'.format(type(e), e)) + cli.msg(chan, '{0}: {1}'.format(type(e), e)) raise if output: