| Index: chrome/common/extensions/docs/server2/branch_utility.py
|
| diff --git a/chrome/common/extensions/docs/server2/branch_utility.py b/chrome/common/extensions/docs/server2/branch_utility.py
|
| index 282c6a4e7bf33d86705dd8e5dccd73fdc6b19bf7..633c5f3a6df26ef1bd3c406f93adc4dca8da4c9b 100644
|
| --- a/chrome/common/extensions/docs/server2/branch_utility.py
|
| +++ b/chrome/common/extensions/docs/server2/branch_utility.py
|
| @@ -6,6 +6,7 @@ import json
|
| import logging
|
| import operator
|
|
|
| +from appengine_wrappers import GetAppVersion
|
| from object_store_creator import ObjectStoreCreator
|
|
|
| class BranchUtility(object):
|
| @@ -13,7 +14,8 @@ class BranchUtility(object):
|
| self._fetch_url = fetch_url
|
| self._fetcher = fetcher
|
| if object_store is None:
|
| - object_store = ObjectStoreCreator(BranchUtility).Create()
|
| + object_store = (ObjectStoreCreator.SharedFactory(GetAppVersion())
|
| + .Create(BranchUtility).Create())
|
| self._object_store = object_store
|
|
|
| @staticmethod
|
|
|