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

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

Issue 10704252: Extensions Docs Server: Internal file system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tests Created 8 years, 5 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/branch_utility.py
diff --git a/chrome/common/extensions/docs/server2/branch_utility.py b/chrome/common/extensions/docs/server2/branch_utility.py
index 1d384dba6f39c99d03f229e81f54d90047d83a7a..132f86525cf60d7b832a0830fa242fa2729b1aed 100644
--- a/chrome/common/extensions/docs/server2/branch_utility.py
+++ b/chrome/common/extensions/docs/server2/branch_utility.py
@@ -11,7 +11,7 @@ def SplitChannelNameFromPath(path, default='stable'):
first, second = path.split('/', 1)
except ValueError:
first = path
- second =''
+ second = ''
if first in ['trunk', 'dev', 'beta', 'stable']:
return (first, second)
else:

Powered by Google App Engine
This is Rietveld 408576698