Paul Burba <ptbu...@gmail.com> writes: > File "C:\SVN\src-trunk-2\subversion\tests\cmdline\svntest\main.py", > line 433, in spawn_process > subprocess.list2cmdline(varargs))) > File "C:\Python26\lib\subprocess.py", line 541, in list2cmdline > needquote = (" " in arg) or ("\t" in arg) or ("|" in arg) or not arg > TypeError: argument of type 'int' is not iterable > FAIL: commit_tests.py 41: set revision props during remote mkdir > ]]] > > No time to look into this further today, but I can check it out tomorrow.
Mapping to strings looks like it should fix that: subprocess.list2cmdline(map(str varargs)))) -- Philip