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

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

Issue 491653002: Docserver: Use GitilesFileSystem instead of SubversionFileSystem (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/host_file_system_iterator.py
diff --git a/chrome/common/extensions/docs/server2/host_file_system_iterator.py b/chrome/common/extensions/docs/server2/host_file_system_iterator.py
index ba4d319d0c7ebf641d8b2aed24cda2cb5e98e258..867adec664ac02ad20d5e2789c910a5bf2dd47ce 100644
--- a/chrome/common/extensions/docs/server2/host_file_system_iterator.py
+++ b/chrome/common/extensions/docs/server2/host_file_system_iterator.py
@@ -20,8 +20,8 @@ class HostFileSystemIterator(object):
'''
last_true = None
while channel_info is not None:
- if channel_info.branch == 'trunk':
- file_system = self._file_system_provider.GetTrunk()
+ if channel_info.branch == 'master':
+ file_system = self._file_system_provider.GetMaster()
else:
file_system = self._file_system_provider.GetBranch(channel_info.branch)
if not callback(file_system, channel_info):

Powered by Google App Engine
This is Rietveld 408576698