Index: testing_support/fake_repos.py |
diff --git a/testing_support/fake_repos.py b/testing_support/fake_repos.py |
index 8bc4547ddc0a5d78118a8d9c15b0f3a963f1f6ca..3c59b6e7eb61f524fbcc2d43a7e477592cd5b6d7 100755 |
--- a/testing_support/fake_repos.py |
+++ b/testing_support/fake_repos.py |
@@ -63,7 +63,7 @@ def commit_svn(repo, usr, pwd): |
"""Commits the changes and returns the new revision number.""" |
to_add = [] |
to_remove = [] |
- for status, filepath in scm.SVN.CaptureStatus(repo): |
+ for status, filepath in scm.SVN.CaptureStatus(None, repo): |
if status[0] == '?': |
to_add.append(filepath) |
elif status[0] == '!': |