Fixed spelling

Changes:
- fixed uppercase variable name
This commit is contained in:
Neocky 2021-08-01 15:10:36 +02:00
parent 1ff34a7372
commit 2e459cafe2

View File

@ -100,8 +100,8 @@ def ftp_downloadFile(ftp, downloadPath, fileToDownload):
ftp.quit() ftp.quit()
def ftp_is_file(FTP, pluginPath): def ftp_is_file(ftp, pluginPath):
if FTP.nlst(pluginPath) == [pluginPath]: if ftp.nlst(pluginPath) == [pluginPath]:
return True return True
else: else:
return False return False