Fixed wrong folder was used when trying to download plugin

Changes:
- fixed wrong folder use while downloading plugins
- made code a little bit cleaner
This commit is contained in:
Neocky 2021-06-21 10:18:52 +02:00
parent 1e7b30a1be
commit 42be836928

View File

@ -78,19 +78,17 @@ def searchPackage(ressourceName):
ressourceSelected = ressourceSelected - 1
ressourceId = packageName[ressourceSelected]["id"]
if not configValues.localPluginFolder:
try:
if configValues.sftp_seperateDownloadPath is True:
getSpecificPackage(ressourceId, configValues.sftp_pathToSeperateDownloadPath)
pluginDownloadPath = configValues.sftp_pathToSeperateDownloadPath
else:
getSpecificPackage(ressourceId, configValues.sftp_folderPath)
except HTTPError as err:
print(oColors.brightRed + f"Error: {err.code} - {err.reason}" + oColors.standardWhite)
pluginDownloadPath = configValues.sftp_folderPath
else:
try:
if configValues.seperateDownloadPath is True:
getSpecificPackage(ressourceId, configValues.pathToPluginFolder)
pluginDownloadPath = configValues.pathToSeperateDownloadPath
else:
getSpecificPackage(ressourceId, configValues.pathToSeperateDownloadPath)
pluginDownloadPath = configValues.pathToPluginFolder
try:
getSpecificPackage(ressourceId, pluginDownloadPath)
except HTTPError as err:
print(oColors.brightRed + f"Error: {err.code} - {err.reason}" + oColors.standardWhite)