fix orthography in error message

This commit is contained in:
caryoscelus 2022-01-07 12:45:05 +00:00
parent 897dae2790
commit 53d1437a65
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class Peer(object):
raise Exception("No connection found")
res = self.connection.request(cmd, params, stream_to)
if not res:
raise Exception("Send error : result is empty")
raise Exception("Send error: result is empty")
if "error" in res:
self.log("%s error: %s" % (cmd, res["error"]))
self.onConnectionError("Response error")