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

Unified Diff: gclient.py

Issue 2854061: Fix misalignment (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 99970ac28715701d3b765f4dba55cf14e5142768..ff79950d8d67824bcb6ec1598aaf367ad67edbf1 100644
--- a/gclient.py
+++ b/gclient.py
@@ -427,7 +427,7 @@ class Dependency(GClientKeywords):
# Add breadth-first.
if self.direct_reference or force_all:
for d in self.dependencies:
- result.append(d)
+ result.append(d)
for d in self.dependencies:
result.extend(d.subtree(force_all))
return result
« 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