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

Unified Diff: gclient.py

Issue 2823040: Copy paste failure. (Closed)
Patch Set: Created 10 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
« 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: gclient.py
diff --git a/gclient.py b/gclient.py
index 6ec2f183fe4a95f94b2f9110d9bfc3f1dd6535e7..3ae9ffecf06430947f1cc64701b30287810521f7 100644
--- a/gclient.py
+++ b/gclient.py
@@ -362,7 +362,8 @@ class Dependency(GClientKeywords):
self.file_list[i] = self.file_list[i][len(prefix):]
# Strip any leading path separators.
- while file_list[i].startswith('\\') or file_list[i].startswith('/'):
+ while (self.file_list[i].startswith('\\') or
+ self.file_list[i].startswith('/')):
self.file_list[i] = self.file_list[i][1:]
# Run hooks on the basis of whether the files from the gclient operation
« 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