From 150a396f66558a8cb7fd41efcfa755d4d7610943 Mon Sep 17 00:00:00 2001 From: fijal Date: Wed, 5 Dec 2007 22:08:23 +0100 Subject: [PATCH] [svn r49423] (naro) Fix for list.append() obviously, has no single test. --HG-- branch : trunk --- py/path/svn/wccommand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/path/svn/wccommand.py b/py/path/svn/wccommand.py index 28fec9e1a..46956159a 100644 --- a/py/path/svn/wccommand.py +++ b/py/path/svn/wccommand.py @@ -118,7 +118,7 @@ class SvnWCCommandPath(common.FSPathBase): if svncommon._getsvnversion() == '1.3': url += "@%d" % rev else: - args.append('-r', str(rev)) + args.append('-r' + str(rev)) self._svn('co', url, *args) def update(self, rev = 'HEAD'):