removed debugging prints

pull/20467/merge
Brian Coca 7 years ago
parent 798d05ea41
commit caf5868ec9

@ -89,7 +89,6 @@ class InventoryModule(BaseInventoryPlugin):
else: else:
try: try:
sp = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) sp = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
print('yo')
except OSError as e: except OSError as e:
raise AnsibleParserError("problem running %s (%s)" % (' '.join(cmd), to_native(e))) raise AnsibleParserError("problem running %s (%s)" % (' '.join(cmd), to_native(e)))
(stdout, stderr) = sp.communicate() (stdout, stderr) = sp.communicate()

@ -87,7 +87,6 @@ class InventoryModule(BaseInventoryPlugin):
valid = False valid = False
if super(InventoryModule, self).verify_file(path): if super(InventoryModule, self).verify_file(path):
print(path)
if path.endswith('.vbox.yaml') or path.endswith('.vbox.yml'): if path.endswith('.vbox.yaml') or path.endswith('.vbox.yml'):
valid = True valid = True
return valid return valid

Loading…
Cancel
Save