Minor cosmetic fix for exceptions in !pull
A space was missing after the colon following the exception name.
This commit is contained in:
parent
87b6861b08
commit
1aa8641102
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user