Make zypper work with python3

pull/41965/head
Robin Roth 8 years ago committed by Brian Coca
parent 9b7b564d75
commit 24e94ec3c6

@ -488,7 +488,7 @@ def main():
update_cache = module.params['update_cache'] update_cache = module.params['update_cache']
# remove empty strings from package list # remove empty strings from package list
name = filter(None, name) name = list(filter(None, name))
# Refresh repositories # Refresh repositories
if update_cache and not module.check_mode: if update_cache and not module.check_mode:

Loading…
Cancel
Save