Fix outstanding unrelated lint issue in multiselect_client

This commit is contained in:
Stuckinaboot 2019-03-03 23:59:38 +11:00 committed by stuckinaboot
parent 58bdee499b
commit 745c5e677c

View File

@ -104,7 +104,7 @@ class MultiselectClient(IMultiselectClient):
if response == protocol:
return protocol
if response == PROTOCOL_NOT_FOUND_MSG:
raise MultiselectClientError("protocol not supported")
raise MultiselectClientError("protocol not supported")
raise MultiselectClientError("unrecognized response: " + response)