| Index: chrome/common/extensions/docs/server2/empty_dir_file_system.py
|
| diff --git a/chrome/common/extensions/docs/server2/empty_dir_file_system.py b/chrome/common/extensions/docs/server2/empty_dir_file_system.py
|
| index 22f5484f0598a49846aeeed493d44f45d8d60e2a..50e660a7a6ad745cfb7189cbdab25045590208d1 100644
|
| --- a/chrome/common/extensions/docs/server2/empty_dir_file_system.py
|
| +++ b/chrome/common/extensions/docs/server2/empty_dir_file_system.py
|
| @@ -21,3 +21,6 @@ class EmptyDirFileSystem(FileSystem):
|
| if not path.endswith('/'):
|
| raise FileNotFoundError('EmptyDirFileSystem cannot stat %s' % path)
|
| return StatInfo(0, child_versions=[])
|
| +
|
| + def GetIdentity(self):
|
| + return self.__class__.__name__
|
|
|