 Issue 29350329:
  Issue 4382 - Use new syntax to catch exceptions in cms  (Closed)
    
  
    Issue 29350329:
  Issue 4382 - Use new syntax to catch exceptions in cms  (Closed) 
  | Index: cms/bin/test_server.py | 
| =================================================================== | 
| --- a/cms/bin/test_server.py | 
| +++ b/cms/bin/test_server.py | 
| @@ -160,7 +160,7 @@ | 
| def wrapper(environ, start_response): | 
| try: | 
| return app(environ, start_response) | 
| - except Exception, e: | 
| + except Exception as e: | 
| return show_error(start_response, '500 Internal Server Error', | 
| uri=environ.get('PATH_INFO'), error=e) |