Merge pull request #10777 from romain-dartigues/plugins_undefined_names

Undefined names found by pyflakes in plugins/inventory/
This commit is contained in:
Brian Coca 2015-04-19 23:43:32 -04:00
commit f5b00084e1
2 changed files with 2 additions and 1 deletions

View file

@ -125,6 +125,7 @@ import os
import re
import argparse
from time import time
import sys
import ConfigParser
import urllib, urllib2, base64

View file

@ -55,7 +55,7 @@ class SoftLayerInventory(object):
self.get_all_servers()
print self.json_format_dict(self.inventory, True)
elif self.args.host:
self.get_virtual_servers(client)
self.get_virtual_servers()
print self.json_format_dict(self.inventory["_meta"]["hostvars"][self.args.host], True)
def to_safe(self, word):