# HG changeset patch # User Goffi # Date 1408988347 -7200 # Node ID 4ab93557976e98b2875834ac9ca008b1abafcfc8 # Parent 90f82f4ee40503eb486fc6ae2ec5ba09cbc68451 reverted commit b1cb1d70bea9: jid should not be lowercase ! diff -r 90f82f4ee405 -r 4ab93557976e src/tools/jid.py --- a/src/tools/jid.py Mon Aug 25 21:32:23 2014 +0200 +++ b/src/tools/jid.py Mon Aug 25 19:39:07 2014 +0200 @@ -22,7 +22,7 @@ """This class help manage JID (Node@Domaine/Resource)""" def __new__(cls, jid): - self = unicode.__new__(cls, jid.lower()) + self = unicode.__new__(cls, jid) self.__parse() return self