What exactly do you mean by “will not compile”? Sounds like a Python 2 vs. 3 problem. `exec code in scope` is Python 2-specific syntax. `exec(code in scope)` is meaningless, because `code in scope` is a boolean expression that will always evaluate to `False` in this context.
-- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/588#issuecomment-312951649