| Index: chrome/common/extensions/docs/server2/memcache_file_system.py
|
| diff --git a/chrome/common/extensions/docs/server2/memcache_file_system.py b/chrome/common/extensions/docs/server2/memcache_file_system.py
|
| index 10ba7eee79183db480e5ac684b00573f2f177f6d..5ac407237cabd5055aeee07a1def863a80b4d147 100644
|
| --- a/chrome/common/extensions/docs/server2/memcache_file_system.py
|
| +++ b/chrome/common/extensions/docs/server2/memcache_file_system.py
|
| @@ -27,7 +27,7 @@ class MemcacheFileSystem(FileSystem):
|
| stat_info = self.StatInfo(version)
|
| return stat_info
|
|
|
| - def Read(self, paths):
|
| + def Read(self, paths, binary=False):
|
| """Reads a list of files. If a file is in memcache and it is not out of
|
| date, it is returned. Otherwise, the file is retrieved from the file system.
|
| """
|
| @@ -45,7 +45,7 @@ class MemcacheFileSystem(FileSystem):
|
| uncached.append(path)
|
| continue
|
| result[path] = data
|
| - new_items = self._file_system.Read(uncached).Get()
|
| + new_items = self._file_system.Read(uncached, binary=binary).Get()
|
| for item in new_items:
|
| version = self.Stat(item).version
|
| value = new_items[item]
|
|
|