| Index: chrome/common/extensions/docs/server2/github_file_system.py
|
| diff --git a/chrome/common/extensions/docs/server2/github_file_system.py b/chrome/common/extensions/docs/server2/github_file_system.py
|
| index e2ca6f56b22e3373c314ccc0de5af4d78e4ae4ae..b7359cdb8cbd9f82bb37b2f97f6062ec59215b9f 100644
|
| --- a/chrome/common/extensions/docs/server2/github_file_system.py
|
| +++ b/chrome/common/extensions/docs/server2/github_file_system.py
|
| @@ -195,7 +195,7 @@ class GithubFileSystem(FileSystem):
|
|
|
| # Parse response JSON - but sometimes github gives us invalid JSON.
|
| try:
|
| - version = json.loads(result.content)['commit']['tree']['sha']
|
| + version = json.loads(result.content)['commit']['sha']
|
| self._stat_object_store.Set(path, version)
|
| return StatInfo(version)
|
| except StandardError as e:
|
|
|