#TUNING by exept
authorClaus Gittinger <cg@exept.de>
Sun, 08 Sep 2019 16:55:26 +0200
changeset 5211 945a2ac21f15
parent 5210 7e214dedbc99
child 5212 76ae0b6f061e
#TUNING by exept class: SftpURI class changed: #pathExists:ftpClient:
SftpURI.st
--- a/SftpURI.st	Sun Sep 08 16:25:45 2019 +0200
+++ b/SftpURI.st	Sun Sep 08 16:55:26 2019 +0200
@@ -59,7 +59,7 @@
 
     (OpenError, FTPClient fileNotFoundErrorSignal) handle:[:ex|] do:[
         list := aFtpClient directoryContentsOf:aPathname.
-        ^ list size = 1 and:[list first = aPathname].
+        ^ list size == 1 and:[list first = aPathname].
     ].
     ^ false.
 ! !