Commit 57e14942 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Fixed error in 'retrieveCompleted()' method.

parent 495cdae2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ class RetrieveExecutor(TaskExecutor):
        fl.close()
        
    def retrieveCompleted(self, vospacePath):
        return not any(vospacePath in f for f in self.fileList)
        return not any(vospacePath in f["vospaceRootParent"] for f in self.fileList)
    
    def retrieveData(self):
        for blockIdx in range(self.numBlocks):