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
Got an error while trying to send message with
./unipager_send.py --hostname 192.168.178.21 --debug --ric 123456 --msg "Test"
Output:
Debug enabled Traceback (most recent call last): File "./unipager_send.py", line 86, in <module> ws.send('{"Authenticate":"' + password + '"}') TypeError: cannot concatenate 'str' and 'NoneType' objects
As workaround i used to change default=None to default='' for password argument.
default=None
default=''
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Got an error while trying to send message with
./unipager_send.py --hostname 192.168.178.21 --debug --ric 123456 --msg "Test"
Output:
As workaround i used to change
default=None
todefault=''
for password argument.The text was updated successfully, but these errors were encountered: