diff --git a/slpkg/upgrade.py b/slpkg/upgrade.py index 7d255ac5..b31d6c9c 100644 --- a/slpkg/upgrade.py +++ b/slpkg/upgrade.py @@ -124,17 +124,16 @@ class Upgrade(Configs): # pylint: disable=[R0902] return True except InvalidVersion as err: self._write_log_file(installed, inst_name, err) - - # Different options to compare packages. - repo_package: str = self.data[inst_name]['package'] - if repo_version > inst_version: # Try to compare the strings. - return True - if repo_version == inst_version and int(repo_build) > int(inst_build): - return True - if installed != repo_package[:-4]: # Add the package if a new one on the repository. - return True - if installed == repo_package[:-4]: # Not new packages in the repository. - return False + # Different options to compare packages. + repo_package: str = self.data[inst_name]['package'] + if repo_version > inst_version: # Try to compare the strings. + return True + if repo_version == inst_version and int(repo_build) > int(inst_build): + return True + if installed != repo_package[:-4]: # Add the package if a new one on the repository. + return True + if installed == repo_package[:-4]: # Not new packages in the repository. + return False return False