From c62702cfc33f67c32c103ebaa6fa14ecdc6dd982 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 23 Jan 2004 13:08:42 +0000 Subject: [PATCH] Foo! --- src/ircutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircutils.py b/src/ircutils.py index 3b0c65ae2..b018fa611 100644 --- a/src/ircutils.py +++ b/src/ircutils.py @@ -375,7 +375,7 @@ class IrcString(str): return False def __ne__(self, s): - return not self == s + return not (self == s) def __hash__(self): return hash(self.lowered)