diff --git a/slpkg/utilities.py b/slpkg/utilities.py index 14060524..4c16edfe 100644 --- a/slpkg/utilities.py +++ b/slpkg/utilities.py @@ -119,7 +119,7 @@ class Utilities(Configs): return True def read_packages_from_file(self, file: Path) -> Generator: - """ Reads packages from file and split these to list. """ + """ Reads name packages from file and split these to list. """ try: with open(file, 'r', encoding='utf-8') as pkgs: packages: list = pkgs.read().splitlines()