1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

removed debugging prints

This commit is contained in:
Brian Coca 2017-05-31 13:08:50 -04:00
parent 798d05ea41
commit caf5868ec9
2 changed files with 0 additions and 2 deletions

View file

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

View file

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