[svn r49423] (naro) Fix for list.append() obviously, has no single test.
--HG-- branch : trunk
This commit is contained in:
parent
de0879d46d
commit
150a396f66
|
@ -118,7 +118,7 @@ class SvnWCCommandPath(common.FSPathBase):
|
||||||
if svncommon._getsvnversion() == '1.3':
|
if svncommon._getsvnversion() == '1.3':
|
||||||
url += "@%d" % rev
|
url += "@%d" % rev
|
||||||
else:
|
else:
|
||||||
args.append('-r', str(rev))
|
args.append('-r' + str(rev))
|
||||||
self._svn('co', url, *args)
|
self._svn('co', url, *args)
|
||||||
|
|
||||||
def update(self, rev = 'HEAD'):
|
def update(self, rev = 'HEAD'):
|
||||||
|
|
Loading…
Reference in New Issue