Skip to content

Commit

Permalink
LibCI: fix bug with acroname.NoneFoundError
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel committed Sep 25, 2022
1 parent f90b046 commit ce9d9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit-tests/py/rspy/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ def _get_port_by_loc( usb_location ):
acroname.connect()
if platform.system() == 'Linux':
_acroname_hubs = set( acroname.find_all_hubs() )
except NoneFoundError as e:
except acroname.NoneFoundError as e:
# This can happen, e.g. on Jetson with D457...
log.d( 'connect() failed:', e )
acroname = None
Expand Down

0 comments on commit ce9d9b6

Please sign in to comment.