Explorar o código

Merge pull request #217 from kwoodson/inven_fix

Fixed a variable naming bug due to rename.
Thomas Wiest %!s(int64=10) %!d(string=hai) anos
pai
achega
115efdf977
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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]: