SftpURI.st
changeset 5211 945a2ac21f15
parent 4882 cdc1e27ab112
--- 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.
 ! !