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

Unified Diff: scm.py

Issue 519073: Fixed wrong argument placement. (Closed)
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: scm.py
diff --git a/scm.py b/scm.py
index 90766038029bdbde7a456c613a11cc5abda9ddd1..42a764c9023904bb975734ea560edaf03da56608 100644
--- a/scm.py
+++ b/scm.py
@@ -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)
« 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