Index: chrome/common/extensions/docs/server2/template_data_source.py |
diff --git a/chrome/common/extensions/docs/server2/template_data_source.py b/chrome/common/extensions/docs/server2/template_data_source.py |
index e2f03d9547078c354ac72feb94bc4c34a1261038..7092ce0fda74a6c3bf68670da736cfbdaa9f593e 100644 |
--- a/chrome/common/extensions/docs/server2/template_data_source.py |
+++ b/chrome/common/extensions/docs/server2/template_data_source.py |
@@ -13,10 +13,10 @@ def _MakeBranchDict(branch): |
return { |
'showWarning': branch != 'stable', |
'branches': [ |
- { 'name': 'Stable', 'path': EXTENSIONS_URL + '/stable' }, |
- { 'name': 'Dev', 'path': EXTENSIONS_URL + '/dev' }, |
- { 'name': 'Beta', 'path': EXTENSIONS_URL + '/beta' }, |
- { 'name': 'Trunk', 'path': EXTENSIONS_URL + '/trunk' } |
+ { 'name': 'Stable', 'path': 'stable' }, |
+ { 'name': 'Dev', 'path': 'dev' }, |
+ { 'name': 'Beta', 'path': 'beta' }, |
+ { 'name': 'Trunk', 'path': 'trunk' } |
], |
'current': branch |
} |