Fixed update command

This commit is contained in:
2023-06-13 15:56:46 +02:00
parent a3504af376
commit b3ed7101fc
18 changed files with 34 additions and 34 deletions

View File

@@ -169,7 +169,7 @@ class UpdateService(CommandABC):
if new_package == old_package:
return
index = self._project_settings.dependencies.index(old_package)
index = deps.index(old_package)
deps[index] = new_package
def _project_json_update_dependency(self, old_package: str, new_package: str):