lopes / netbox-scanner

A scanner util for NetBox
MIT License
164 stars 39 forks source link

Netbox-scanner fails to run with error "TypeError: __init__() got an unexpected keyword argument 'ssl_verify'" #23

Open royvandongen opened 3 years ago

royvandongen commented 3 years ago

please be aware, in the file "/nbs/init.py" on line 9, it states:

self.netbox = api(address, token, ssl_verify=tls_verify)

this should be

self.netbox = api(address, token, tls_verify)

in order to make it working again.