| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Subversion
Revision: 32923
Author: julianfoad
Date: 05 Sep 2008 09:14:15
Changes:Fix a Python syntax error I introduced in r32906, that worked in the version
I was using but failed on a MacOSX build-bot.
* subversion/tests/cmdline/merge_tests.py
(svn_propset): Explicitly cast the generator expression to a tuple before
passing it as a variadic argument.
| ... | ...@@ -12086,8 +12086,9 @@ | |
| 12086 | 12086 | |
| 12087 | 12087 | def svn_propset(pname, pvalue, *paths): |
| 12088 | 12088 | "Set property 'pname' to value 'pvalue' on each path in 'paths'" |
| 12089 | local_paths = tuple(local_path(path) for path in paths) | |
| 12089 | 12090 | svntest.actions.run_and_verify_svn(None, None, [], 'propset', pname, pvalue, |
| 12090 | *(local_path(path) for path in paths)) | |
| 12091 | *local_paths) | |
| 12091 | 12092 | |
| 12092 | 12093 | #---------------------------------------------------------------------- |
| 12093 | 12094 | # Tests for merging the deletion of a node, where the node to be deleted |