Browse Source

Updated with the class name.

Kenny Woodson 10 năm trước cách đây
mục cha
commit
54de85ff38
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      inventory/multi_ec2.py

+ 2 - 2
inventory/multi_ec2.py

@@ -11,7 +11,7 @@ import json
 import pprint
 
 
-class MetaInventory(object):
+class MultiEc2(object):
 
     def __init__(self):
         self.config = None
@@ -176,7 +176,7 @@ class MetaInventory(object):
 
 
 if __name__ == "__main__":
-    mi = MetaInventory()
+    mi = MultiEc2()
     #print mi.result
     pp = pprint.PrettyPrinter(indent=2)
     pp.pprint(mi.result)