fix replace in line 15
This commit is contained in:
parent
d7d4e5a6a4
commit
e511c02ba1
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ def find_line_items(identifier, input_string):
|
|||
|
||||
def get_usb_devices():
|
||||
usb_string = subprocess.check_output(['VBoxManage', 'list', 'usbhost'])
|
||||
usb_string = usb_string.decode("utf-8").replace('r', '')
|
||||
usb_string = usb_string.decode("utf-8").replace('\r', '')
|
||||
|
||||
usb_devices = usb_string.split("\n\n")
|
||||
devices = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue