| Index: tests/fake_repos.py
|
| diff --git a/tests/fake_repos.py b/tests/fake_repos.py
|
| index 2ce6ea9195796c69cb0cd617cd818bc174174f2b..981bd91962a7110c31a64ddfde9109648d54649a 100755
|
| --- a/tests/fake_repos.py
|
| +++ b/tests/fake_repos.py
|
| @@ -169,7 +169,8 @@ def commit_svn(repo):
|
| '--no-auth-cache', '--username', 'user1', '--password', 'foo'],
|
| cwd=repo)
|
| out, err = proc.communicate()
|
| - match = re.search(r'revision (\d+).', out)
|
| + last_line = out.splitlines()[-1]
|
| + match = re.search(r'(\d+)', out)
|
| if not match:
|
| raise Exception('Commit failed', out, err, proc.returncode)
|
| rev = match.group(1)
|
|
|