This commit is contained in:
		@@ -84,7 +84,7 @@ class Executor:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    def removeFileInCurrentDirectory(self, file: str) -> str:
 | 
					    def removeFileInCurrentDirectory(self, file: str) -> str:
 | 
				
			||||||
        file = self.sanitizeFile(file)
 | 
					        file = self.sanitizeFile(file)
 | 
				
			||||||
        currentfile = os.path.join(self.currentDirectory, file)
 | 
					        currentfile = os.path.join(self.baseDir, self.currentDirectory, file)
 | 
				
			||||||
        if os.path.exists(currentfile):
 | 
					        if os.path.exists(currentfile):
 | 
				
			||||||
            os.remove(currentfile)
 | 
					            os.remove(currentfile)
 | 
				
			||||||
        return currentfile
 | 
					        return currentfile
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user