Skip to content

Commit 89c8d77

Browse files
author
Stephen Kennedy
committed
Handle spaces in svn path Bug 522864
svn path=/trunk/; revision=1028
1 parent 5be5109 commit 89c8d77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vc/svn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _get_dirsandfiles(self, directory, dirs, files):
5454

5555
while 1:
5656
try:
57-
entries = os.popen("svn status -Nv "+directory).read()
57+
entries = os.popen('svn status -Nv "%s"'%directory).read()
5858
break
5959
except OSError, e:
6060
if e.errno != errno.EAGAIN:

0 commit comments

Comments
 (0)