Dear all,
Sorry if this is the wrong place for this.
I had to modify line 97 of hot-backup.py from
infile, outfile, errfile = os.popen3(svnlook + " youngest " + repo_dir)
to
infile, outfile, errfile = os.popen3(svnlook + " youngest \"" + repo_dir
+ "\"")
because the path to my repository contains whitespace.
An example of the problem:
$ cd \tmp
$ mkdir "A Directory"
$ svnadmin create "A Directory/repos"
$ hot-backup.py "A Directory/repos" /tmp
Keeping up to 64 around.
Beginning hot backup of 'A Directory/repos/'.
Traceback (most recent call last):
File "/usr/bin/svn-hot-backup", line 105, in ?
youngest = string.strip(stdout_lines[0])
IndexError: list index out of range
Thanks,
gav.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Apr 4 23:06:27 2006