tools/pydfu.py: Use getfullargspec instead of getargspec for newer pyusb

pyusb v1.0.2 warns about `getargspec` as being deprecated.
This commit is contained in:
roland 2018-07-18 12:31:14 +02:00 committed by Damien George
parent 6e50df4e21
commit feec0a6909

View File

@ -62,7 +62,7 @@ __verbose = None
__DFU_INTERFACE = 0
import inspect
if 'length' in inspect.getargspec(usb.util.get_string).args:
if 'length' in inspect.getfullargspec(usb.util.get_string).args:
# PyUSB 1.0.0.b1 has the length argument
def get_string(dev, index):
return usb.util.get_string(dev, 255, index)