mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-04 12:22:45 +00:00
"gem"-module: replace python 2.5 language feature
replace conditional expression with python 2.4-compatible if/else statements
This commit is contained in:
@@ -130,7 +130,10 @@ def install(module):
|
||||
return
|
||||
|
||||
ver = get_rubygems_version(module)
|
||||
major = ver[0] if ver else None
|
||||
if ver:
|
||||
major = ver[0]
|
||||
else:
|
||||
major = None
|
||||
|
||||
cmd = [ module.get_bin_path('gem', True) ]
|
||||
cmd.append('install')
|
||||
|
||||
Reference in New Issue
Block a user