Browse Source

Merge pull request #217 from kwoodson/inven_fix

Fixed a variable naming bug due to rename.
Thomas Wiest 10 years ago
parent
commit
115efdf977
1 changed files with 1 additions and 1 deletions
  1. 1 1
      inventory/multi_ec2.py

+ 1 - 1
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]: