From c9c01def8c7430f3953291923372620e0ebcb647 Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 29 Jun 2017 21:51:02 -0700 Subject: [PATCH] ts6_common: continue using self.irc in TS6SIDGenerator --- protocols/ts6_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6_common.py b/protocols/ts6_common.py index ab42c22..20d25e1 100644 --- a/protocols/ts6_common.py +++ b/protocols/ts6_common.py @@ -79,7 +79,7 @@ class TS6SIDGenerator(): """ Returns the next unused TS6 SID for the server. """ - while ''.join(self.output) in self.servers: + while ''.join(self.output) in self.irc.servers: # Increment until the SID we have doesn't already exist. self.increment() sid = ''.join(self.output)