mirror of
https://github.com/Neocky/pluGET.git
synced 2024-04-29 16:12:30 +00:00
Fixed spelling
Changes: - fixed uppercase variable name
This commit is contained in:
parent
1ff34a7372
commit
2e459cafe2
@ -100,8 +100,8 @@ def ftp_downloadFile(ftp, downloadPath, fileToDownload):
|
||||
ftp.quit()
|
||||
|
||||
|
||||
def ftp_is_file(FTP, pluginPath):
|
||||
if FTP.nlst(pluginPath) == [pluginPath]:
|
||||
def ftp_is_file(ftp, pluginPath):
|
||||
if ftp.nlst(pluginPath) == [pluginPath]:
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user