diff options
Diffstat (limited to 'Demo/sockets/rpythond.py')
-rwxr-xr-x | Demo/sockets/rpythond.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sockets/rpythond.py b/Demo/sockets/rpythond.py index 81397d6..34de982 100755 --- a/Demo/sockets/rpythond.py +++ b/Demo/sockets/rpythond.py @@ -40,7 +40,7 @@ def execute(request): sys.stdout = sys.stderr = fakefile = StringIO.StringIO() try: try: - exec request in {}, {} + exec(request, {}, {}) except: print traceback.print_exc(100) |