diff --git a/slpkg/utilities.py b/slpkg/utilities.py index 7a91810e..4f0a49b4 100644 --- a/slpkg/utilities.py +++ b/slpkg/utilities.py @@ -112,9 +112,8 @@ class Utilities: arch: str = ''.join(package[len(name + version) + 2:].split('-')[:-1]) build_tag: str = package.split('-')[-1] build: str = ''.join(re.findall(r'\d+', build_tag[:2])) - tag: str = build_tag[len(build):].replace('_', '') - return [name, version, arch, build, tag] + return [name, version, arch, build] def finished_time(self, elapsed_time: float) -> None: """ Printing the elapsed time. """