diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-07 18:43:23 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-05-07 18:43:23 -0400 |
commit | 115efdf97740fb0f22cde3cc6186f82def561942 (patch) | |
tree | f023ddad152f9fb16f4779bdb20695fffe7df05b | |
parent | 9cf97c888698a6fda1a03f0eb5ae5bd74ee2408b (diff) | |
parent | c6c0463a54af4bdab6810697a1ab5f81ef782f4d (diff) | |
download | openshift-115efdf97740fb0f22cde3cc6186f82def561942.tar.gz openshift-115efdf97740fb0f22cde3cc6186f82def561942.tar.bz2 openshift-115efdf97740fb0f22cde3cc6186f82def561942.tar.xz openshift-115efdf97740fb0f22cde3cc6186f82def561942.zip |
Merge pull request #217 from kwoodson/inven_fix
Fixed a variable naming bug due to rename.
-rwxr-xr-x | inventory/multi_ec2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inventory/multi_ec2.py b/inventory/multi_ec2.py index b99212dd5..063a80300 100755 --- a/inventory/multi_ec2.py +++ b/inventory/multi_ec2.py @@ -191,7 +191,7 @@ class MultiEc2(object): elif isinstance(input_a[key], list) and isinstance(input_b[key], list): for result in input_b[key]: if result not in input_a[key]: - input_a[key].input_append(result) + input_a[key].append(result) # a is a list and not b elif isinstance(input_a[key], list): if input_b[key] not in input_a[key]: |