Skip to content

Commit

Permalink
error signal should also be decoded
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Jul 17, 2015
1 parent f53a1c6 commit c94653e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/command/auto/__init__.py
Expand Up @@ -254,7 +254,7 @@ def do_rebuild(self, event):
errord = error.decode('utf-8')
if p.wait() != 0:
self.logger.error(errord)
error_signal.send(error=error)
error_signal.send(error=errord)
else:
print(errord)

Expand Down

0 comments on commit c94653e

Please sign in to comment.