collective / rapido.core

2 stars 2 forks source link

error class missing from exception logging #6

Closed djay closed 8 years ago

djay commented 8 years ago
def vote:
   pass

Gives

2015-11-26 20:48:06 ERROR Rapido in app, at line 1: invalid syntax
def votes:
---------^

instead of something more helpful like

 File "<stdin>", line 1
    def vote:
            ^
SyntaxError: invalid syntax

ie, SyntaxError is missing.