summaryrefslogtreecommitdiffstats
path: root/inventory
diff options
context:
space:
mode:
authorThomas Wiest <twiest@users.noreply.github.com>2015-05-07 18:43:23 -0400
committerThomas Wiest <twiest@users.noreply.github.com>2015-05-07 18:43:23 -0400
commit115efdf97740fb0f22cde3cc6186f82def561942 (patch)
treef023ddad152f9fb16f4779bdb20695fffe7df05b /inventory
parent9cf97c888698a6fda1a03f0eb5ae5bd74ee2408b (diff)
parentc6c0463a54af4bdab6810697a1ab5f81ef782f4d (diff)
downloadopenshift-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.
Diffstat (limited to 'inventory')
-rwxr-xr-xinventory/multi_ec2.py2
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]: