Index: chrome/common/extensions/docs/server2/echo_handler.py |
diff --git a/chrome/common/extensions/docs/server2/echo_handler.py b/chrome/common/extensions/docs/server2/echo_handler.py |
index c94c412157fc3a3b8c14442d315128e02824476d..d57d839a5923715e8dcac09b5dc51b029cefa6bd 100755 |
--- a/chrome/common/extensions/docs/server2/echo_handler.py |
+++ b/chrome/common/extensions/docs/server2/echo_handler.py |
@@ -78,7 +78,7 @@ class Handler(webapp.RequestHandler): |
AppEngineMemcache(branch, memcache)) |
cache_builder = FileSystemCache.Builder(file_system) |
- api_data_source = APIDataSource(cache_builder, API_PATH) |
+ api_data_source_factory = APIDataSource.Factory(cache_builder, API_PATH) |
api_list_data_source = APIListDataSource(cache_builder, |
file_system, |
API_PATH, |
@@ -91,7 +91,7 @@ class Handler(webapp.RequestHandler): |
EXAMPLES_PATH) |
template_data_source_factory = TemplateDataSource.Factory( |
branch, |
- api_data_source, |
+ api_data_source_factory, |
api_list_data_source, |
intro_data_source, |
samples_data_source_factory, |