"gem"-module: replace python 2.5 language feature
replace conditional expression with python 2.4-compatible if/else statements
This commit is contained in:
parent
e9f693fa00
commit
413f04d227
1 changed files with 4 additions and 1 deletions
5
gem
5
gem
|
@ -130,7 +130,10 @@ def install(module):
|
||||||
return
|
return
|
||||||
|
|
||||||
ver = get_rubygems_version(module)
|
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 = [ module.get_bin_path('gem', True) ]
|
||||||
cmd.append('install')
|
cmd.append('install')
|
||||||
|
|
Loading…
Add table
Reference in a new issue