[svn r56512] avoid infinite recursion issue with svn 1.5, thanks chris lamb

--HG--
branch : trunk
This commit is contained in:
hpk 2008-07-13 16:02:26 +02:00
parent 3158564e7f
commit cdc3f3e9fc
1 changed files with 3 additions and 1 deletions

View File

@ -239,7 +239,9 @@ checkin message msg."""
for lsline in lines: for lsline in lines:
if lsline: if lsline:
info = InfoSvnCommand(lsline) info = InfoSvnCommand(lsline)
if info._name != '.': # svn 1.5 produces '.' dirs,
nameinfo_seq.append((info._name, info)) nameinfo_seq.append((info._name, info))
return nameinfo_seq return nameinfo_seq
auth = self.auth and self.auth.makecmdoptions() or None auth = self.auth and self.auth.makecmdoptions() or None
if self.rev is not None: if self.rev is not None: