You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@climate.apache.org by jo...@apache.org on 2014/02/28 06:46:32 UTC

svn commit: r1572822 - /incubator/climate/trunk/ocw-ui/backend/run_webservices.py

Author: joyce
Date: Fri Feb 28 05:46:32 2014
New Revision: 1572822

URL: http://svn.apache.org/r1572822
Log:
CLIMATE-350 - Fix bad response header bug

Modified:
    incubator/climate/trunk/ocw-ui/backend/run_webservices.py

Modified: incubator/climate/trunk/ocw-ui/backend/run_webservices.py
URL: http://svn.apache.org/viewvc/incubator/climate/trunk/ocw-ui/backend/run_webservices.py?rev=1572822&r1=1572821&r2=1572822&view=diff
==============================================================================
--- incubator/climate/trunk/ocw-ui/backend/run_webservices.py (original)
+++ incubator/climate/trunk/ocw-ui/backend/run_webservices.py Fri Feb 28 05:46:32 2014
@@ -31,7 +31,7 @@ app.mount('/processing/', processing_app
 @app.route('/')
 @app.route('/index.html')
 def index():
-    raise static_file('index.html', root='./app')
+    return static_file('index.html', root='./app')
 
 @app.route('/js/:path#.+#')
 def server_static(path):