diff --git a/slpkg/main.py b/slpkg/main.py index 180c8cdd..cab26570 100644 --- a/slpkg/main.py +++ b/slpkg/main.py @@ -476,15 +476,12 @@ class Menu(Configs): # pylint: disable=[R0902] if added: packages = [pkg for pkg in packages if not pkg.endswith('_Added.')] - # added = self.choose.packages(self.data, added, command) - # Add the new added packages front to list for install. + # New packages added to the repository are pushed to the front of + # the list to be installed first. packages: list = added.extend(packages) packages: list = self.choose.packages(self.data, packages, command) - # Add the new added packages front to list for install. - # packages: list = added.extend(packages) - if not packages: print('\nEverything is up-to-date!\n') raise SystemExit(0)