Minor cosmetic fix for exceptions in !pull

A space was missing after the colon following the exception name.
This commit is contained in:
nyuszika7h 2014-03-22 12:19:17 +01:00
parent 87b6861b08
commit 1aa8641102

View File

@ -3077,7 +3077,7 @@ def git_pull(cli, nick, chan, rest):
try: try:
output = subprocess.check_output(('git', 'pull')) output = subprocess.check_output(('git', 'pull'))
except Exception as e: except Exception as e:
cli.msg(chan, '{0}:{1}'.format(type(e), e)) cli.msg(chan, '{0}: {1}'.format(type(e), e))
raise raise
if output: if output: