Commit 0c401696 authored by maruel@chromium.org's avatar maruel@chromium.org

Fixed wrong argument placement.

TEST=none
BUG=none
TBR=bradnelson

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@35688 0039d316-1c4b-4281-b951-d872f2087c98
parent ce3c8621
......@@ -621,8 +621,9 @@ class SVN(object):
try:
os.chdir(root)
diff = "".join(filter(None,
[SVN.DiffItem(RelativePath(f, root, revision),
full_move=full_move)
[SVN.DiffItem(RelativePath(f, root),
full_move=full_move,
revision=revision)
for f in filenames]))
finally:
os.chdir(previous_cwd)
......
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