jhshi/pelican.plugins.post_revision

Doesn't work with python3

maweki opened this issue · 1 comments

For python3 the line for line in output.split('\n'): needs to be changed into for line in output.decode().split('\n'):.

PR follows

This has been fixed with #2 being merged