virtualbox: fix regression byte-string (#54244)
All paths in get_bin_path are string type and vboxmanage was byte-string type. So os.path.join was failing to join these two. Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
d241fc7844
commit
9aa1360867
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
|||
''' Host inventory parser for ansible using local virtualbox. '''
|
||||
|
||||
NAME = 'virtualbox'
|
||||
VBOX = b"VBoxManage"
|
||||
VBOX = "VBoxManage"
|
||||
|
||||
def __init__(self):
|
||||
self._vbox_path = None
|
||||
|
|
Loading…
Reference in a new issue