From 38cabc04729419c23e14ddb5280a2e591bd9e4c3 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sat, 23 Mar 2019 18:22:46 +0000 Subject: [PATCH] Fix bug in relay unsubscribing --- core/relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/relay.py b/core/relay.py index f121110..68aa5c5 100644 --- a/core/relay.py +++ b/core/relay.py @@ -78,7 +78,7 @@ class Relay(Protocol): if not i in self.subscriptions: self.sendErr("NOTSUBSCRIBED") return - del self.subscriptions[i] + del self.subscriptions[i] self.sendMsg({"type": "success"}) return