I'm on python3 and not found any module to work with svn, and choose to make it myself
First of all i create a list of parameters: cmd
and later run this code:
p = subprocess.call(cmd,
stdout=subprocess.PIPE)
the value for cmd is:
['svn', 'add', '*', '--force', '--auto-props', '--parents', '--depth', 'infinity']
running the code is showing this warning:
svn: warning: '/Users/kuait/Documents/SVN/wk/*' not found
if i run this in shell it works, I think subprocess is interpreting the * as a file or dir