소스 검색

Fixed a bug due to renaming of variables.

Kenny Woodson 10 년 전
부모
커밋
c6c0463a54
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      inventory/multi_ec2.py

+ 1 - 1
inventory/multi_ec2.py

@@ -182,7 +182,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]: