Dropped braces from python injection
diff --git a/plyxproto/logicparser.py b/plyxproto/logicparser.py
index d98b754..0117113 100644
--- a/plyxproto/logicparser.py
+++ b/plyxproto/logicparser.py
@@ -84,7 +84,7 @@
 
     def p_term_python(self, p):
         '''term : ESCAPE'''
-        p[0] = {'python': p[1]}
+        p[0] = {'python': p[1].lstrip('{').rstrip('}')}
 
     def p_fole_group(self, p):
         "fole : LPAREN fole RPAREN"