From 53d1437a654502097e81469ee8db3e674cf2af53 Mon Sep 17 00:00:00 2001
From: caryoscelus <caryoscelus@gmx.com>
Date: Fri, 7 Jan 2022 12:45:05 +0000
Subject: [PATCH] fix orthography in error message

---
 src/Peer/Peer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Peer/Peer.py b/src/Peer/Peer.py
index bbbf9501..e525b421 100644
--- a/src/Peer/Peer.py
+++ b/src/Peer/Peer.py
@@ -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")