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

Unified Diff: gcl.py

Issue 552139: gcl.py cleanup (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/depot_tools/
Patch Set: '' Created 10 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcl.py
===================================================================
--- gcl.py (revision 37050)
+++ gcl.py (working copy)
@@ -29,9 +29,7 @@
CODEREVIEW_SETTINGS = {
# Default values.
- "CODE_REVIEW_SERVER": "codereview.chromium.org",
- "CC_LIST": "chromium-reviews@googlegroups.com",
- "VIEW_VC": "http://src.chromium.org/viewvc/chrome?view=rev&revision=",
+ "CODE_REVIEW_SERVER": "codereview.appspot.com",
}
# globals that store the root of the current repository and the directory where
@@ -1102,13 +1100,6 @@
os.mkdir(GetInfoDir())
if not os.path.exists(GetChangesDir()):
os.mkdir(GetChangesDir())
- # For smooth upgrade support, move the files in GetInfoDir() to
- # GetChangesDir().
- # TODO(maruel): Remove this code in August 2009.
- for filename in os.listdir(unicode(GetInfoDir())):
- file_path = os.path.join(unicode(GetInfoDir()), filename)
- if os.path.isfile(file_path) and filename != CODEREVIEW_SETTINGS_FILE:
- shutil.move(file_path, GetChangesDir())
if not os.path.exists(GetCacheDir()):
os.mkdir(GetCacheDir())
except gclient_utils.Error:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698