Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Unified Diff: chrome/common/extensions/docs/server2/local_file_system.py

Issue 10829348: Extensions Docs Server: Large performance increase (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes and ObjectStore Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/server2/local_file_system.py
diff --git a/chrome/common/extensions/docs/server2/local_file_system.py b/chrome/common/extensions/docs/server2/local_file_system.py
index 7937fd0249250edb706acd04b6821d6244ec68ba..124e931ada5a888c6c63a87e4fbb75bbdfa8fdd5 100644
--- a/chrome/common/extensions/docs/server2/local_file_system.py
+++ b/chrome/common/extensions/docs/server2/local_file_system.py
@@ -58,7 +58,7 @@ class LocalFileSystem(file_system.FileSystem):
for filename in os.listdir(path))
else:
versions = None
- return self.StatInfo(os.stat(path).st_mtime, versions)
+ return file_system.StatInfo(os.stat(path).st_mtime, versions)
def Stat(self, path):
try:

Powered by Google App Engine
This is Rietveld 408576698