Replaced the changed_iter = changed_iter or ... statement with the changed_iter |= ... compound assignment operator for brevity

master
kewl fft 2023-07-08 18:56:02 +01:00
parent 2a076dc6a0
commit cbf843e1db
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ def install_packages(module, packages, use, extra_args, state, skip_pgp_check, i
command.append(package)
rc, out, err = module.run_command(command, check_rc=True)
changed_iter = changed_iter or not (out == '' or 'up-to-date -- skipping' in out or 'nothing to do' in out.lower())
changed_iter |= not (out == '' or 'up-to-date -- skipping' in out or 'nothing to do' in out.lower())
message = 'installed package(s)' if changed_iter else 'package(s) already installed'