[svn r49423] (naro) Fix for list.append() obviously, has no single test.

--HG--
branch : trunk
This commit is contained in:
fijal 2007-12-05 22:08:23 +01:00
parent de0879d46d
commit 150a396f66
1 changed files with 1 additions and 1 deletions

View File

@ -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'):