| 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 6185182ea0e55598c485903ad064a75817a5571a..572d1d881d6c794799fe949c4d9cfaa363c21c22 100644
|
| --- a/chrome/common/extensions/docs/server2/github_file_system.py
|
| +++ b/chrome/common/extensions/docs/server2/github_file_system.py
|
| @@ -129,7 +129,7 @@ class GithubFileSystem(FileSystem):
|
| if zip_file is None:
|
| logging.error('Bad github zip file.')
|
| return ''
|
| - prefix = zip_file.namelist()[0][:-1]
|
| + prefix = zip_file.namelist()[0]
|
| return zip_file.read(prefix + path)
|
|
|
| def _ListDir(self, path):
|
|
|