Skip to content

Commit 27a2dd9

Browse files
committed
fix path bug
1 parent d605889 commit 27a2dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bridge.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def shutdown(self):
9494

9595
def start(self):
9696
log.info("Setting up USB device")
97-
os.system(scripts / "setup_ctaphid.sh" + (" composite" if args.composite else ""))
97+
os.system(str(scripts / "setup_ctaphid.sh") + (" composite" if args.composite else ""))
9898
self._usbdevice = os.open("/dev/ctaphid", os.O_RDWR)
9999
self._usbhid = USBHID(self._usbdevice)
100100
self._ctaphid = CTAPHID(self._usbhid)

0 commit comments

Comments
 (0)