We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 433935d commit 992aaa4Copy full SHA for 992aaa4
psychopy/experiment/py2js.py
@@ -89,7 +89,7 @@ def expression2js(expr):
89
syntaxTree = ast.parse(str(expr))
90
except Exception as err:
91
logging.error(err)
92
- return
+ return str(expr)
93
94
for node in ast.walk(syntaxTree):
95
TupleTransformer().visit(node) # Transform tuples to list
0 commit comments