Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Sep 23, 2024
1 parent a08c0b6 commit 3add8cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/controllers/Args.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def parse(self):
raise ArgsException('Could not set mail recipient(s): ' + str(e))

#
# If --update-list param has been set
# If --update param has been set
#
if args.update != "null":
try:
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/Package/Package.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def update(self, packages_list: list = [], assume_yes: bool = False, ignore_excl
packages_list_temp = []

# For each package in the list, if no current version or available version is provided, retrieve it
# This is the case when the user uses the --update-list parameter
# This is the case when the user uses the --update parameter
for package in packages_list:
if 'current_version' not in package or 'available_version' not in package:
package['current_version'] = self.myPackageManagerController.get_current_version(package['name'])
Expand Down

0 comments on commit 3add8cc

Please sign in to comment.