Be aware it's the dev branch and there might still be some issues. Looking through the pull requests there seems to be a problem with else statements:
You must be registered to see the links
This should probably be fixable by changing line 407 in decompiler/__init__.py from
Code:
if (i + 1) == len(ast.entries) and not isinstance(condition, renpy.ast.PyExpr):
to
Code:
if (i + 1) == len(ast.entries) and not isinstance(condition, (renpy.ast.PyExpr, renpy.astsupport.PyExpr)):
if I understand it correctly, but that would need some tests (so if someone reports else statement errors this might be a way to fix it...)