mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-26 08:26:28 +00:00
Merge pull request #6480 from do3cc/patch-1
Properly catch import errors in apt
This commit is contained in:
@@ -153,7 +153,7 @@ HAS_PYTHON_APT = True
|
||||
try:
|
||||
import apt
|
||||
import apt_pkg
|
||||
except:
|
||||
except ImportError:
|
||||
HAS_PYTHON_APT = False
|
||||
|
||||
def package_split(pkgspec):
|
||||
|
||||
Reference in New Issue
Block a user