From c1e24cb7a065062a829699a70ac8ec0d405dbf6c Mon Sep 17 00:00:00 2001 From: Vadim Berezniker Date: Wed, 6 Mar 2013 16:58:57 -0800 Subject: [PATCH] Respect gem_source option if specified --- gem | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gem b/gem index 104c4ecd778..156554b2b3b 100644 --- a/gem +++ b/gem @@ -151,7 +151,7 @@ def main(): if module.params['gem_source'] and module.params['state'] == 'latest': module.fail_json(msg="Cannot maintain state=latest when installing from local source") - if module.params['gem_source'] is not 'null': + if not module.params['gem_source']: module.params['gem_source'] = module.params['name'] changed = False