Commit 1494628a authored by Luke Macken's avatar Luke Macken

Remove an unnecessary 'finally' that breaks py2.4 support

parent 98e9564a
......@@ -186,6 +186,6 @@ class ReversePythonShell(threading.Thread, pyrasite.PyrasiteIPC):
pass
except:
traceback.print_exc(file=sys.__stderr__)
finally:
sys.stdout, sys.stderr = sys.__stdout__, sys.__stderr__
self.close()
sys.stdout, sys.stderr = sys.__stdout__, sys.__stderr__
self.close()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment