We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is an error when running getAPinfo() in python3: >TypeError: a bytes-like object is required, not 'str' This has also been found by other users
It can be fixed by adding the line raw_output = raw_output.decode('utf-8') in between lines 66 and 67 of init.py in the getRawNetworkScan function
raw_output = raw_output.decode('utf-8')
getRawNetworkScan
The text was updated successfully, but these errors were encountered:
it looks like this was fixed in PR #4, maybe this can be merged in @jvillagomez ?
Sorry, something went wrong.
No branches or pull requests
There is an error when running getAPinfo() in python3:
>TypeError: a bytes-like object is required, not 'str'
This has also been found by other users
It can be fixed by adding the line
raw_output = raw_output.decode('utf-8')
in between lines 66 and 67 of init.py in the
getRawNetworkScan
functionThe text was updated successfully, but these errors were encountered: