Commit 044f4e39 authored by maruel@chromium.org's avatar maruel@chromium.org

Fix misalignment

NO CODE CHANGE.

TBR=bradnelson

Review URL: http://codereview.chromium.org/2854061

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@53399 0039d316-1c4b-4281-b951-d872f2087c98
parent 98d05fa3
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment