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

pyusb v1.0.2 warns about `getargspec` as being deprecated.
pull/3940/head
roland 2018-07-18 12:31:14 +02:00 zatwierdzone przez Damien George
rodzic 6e50df4e21
commit feec0a6909
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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)