diff options
author | ahernandez.miralles@gmail.com <ahernandez.miralles@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-07 22:05:04 +0000 |
---|---|---|
committer | ahernandez.miralles@gmail.com <ahernandez.miralles@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-07 22:05:04 +0000 |
commit | 1d0e548a86cae4b6274fe9eef38b96a8e49aa12a (patch) | |
tree | b27dc9eb3319da3c9eaa93bb30493b6a6f63aac5 /chrome/common/extensions/docs/server2/chained_compiled_file_system.py | |
parent | 177489835f6e988ff03548e579b50013785007e5 (diff) | |
download | chromium_src-1d0e548a86cae4b6274fe9eef38b96a8e49aa12a.zip chromium_src-1d0e548a86cae4b6274fe9eef38b96a8e49aa12a.tar.gz chromium_src-1d0e548a86cae4b6274fe9eef38b96a8e49aa12a.tar.bz2 |
Docserver: Factor SamplesModel out of SamplesDataSource
BUG=275039
NOTRY=True
Review URL: https://codereview.chromium.org/437323003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288149 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/server2/chained_compiled_file_system.py')
-rw-r--r-- | chrome/common/extensions/docs/server2/chained_compiled_file_system.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/server2/chained_compiled_file_system.py b/chrome/common/extensions/docs/server2/chained_compiled_file_system.py index 6fbd31e..74e2a59 100644 --- a/chrome/common/extensions/docs/server2/chained_compiled_file_system.py +++ b/chrome/common/extensions/docs/server2/chained_compiled_file_system.py @@ -6,6 +6,7 @@ from compiled_file_system import CompiledFileSystem from docs_server_utils import StringIdentity from file_system import FileNotFoundError from future import Future +from path_util import ToDirectory class ChainedCompiledFileSystem(object): @@ -52,8 +53,7 @@ class ChainedCompiledFileSystem(object): lambda compiled_fs: compiled_fs.GetFileVersion(path)) def GetFromFileListing(self, path): - if not path.endswith('/'): - path += '/' + path = ToDirectory(path) return self._GetImpl( path, lambda compiled_fs: compiled_fs.GetFromFileListing(path), |