From e9bc25d2314cca2b59111cb29cc827c360d892da Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 4 Oct 2012 16:55:01 -0400 Subject: [PATCH] Climb out of the hole breitenfelds dug. --- irkerd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irkerd b/irkerd index a9c6eed..08a192f 100755 --- a/irkerd +++ b/irkerd @@ -404,7 +404,7 @@ class Irker: if type(message) not in (type(""), type(u"")): self.logerr("malformed request - unexpected message type: %r" % message) else: - if isinstance(channels, unicode): + if type(channels) != type([]): channels = [channels] for url in channels: if not type(url) in (type(""), type(u"")): -- 2.26.2