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

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

Issue 26538009: Docserver: make file_system a property of Create (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: niggles Created 7 years, 2 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/file_system.py
diff --git a/chrome/common/extensions/docs/server2/file_system.py b/chrome/common/extensions/docs/server2/file_system.py
index d286dd6cf0e7ceefe03ccdbf68fca8161edac58f..8b6314dc07971f96df47525b134692d25d58a793 100644
--- a/chrome/common/extensions/docs/server2/file_system.py
+++ b/chrome/common/extensions/docs/server2/file_system.py
@@ -128,11 +128,8 @@ class FileSystem(object):
for walkinfo in walk(root):
yield walkinfo
- def GetDebugString(self):
- return ''
-
def __repr__(self):
- return '<%s%s>' % (self.__class__.__name__, self.GetDebugString())
+ return '<%s>' % type(self).__name__
def __str__(self):
return repr(self)

Powered by Google App Engine
This is Rietveld 408576698