Jajcus / pyxmpp

XMPP implementation for Python

Home Page:http://pyxmpp.jajcus.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

incorrect default type assignment in pyxmpp.stanzaprocessor.set_message_handler()

Jajcus opened this issue · comments

When type == None it said to be treated as "normal" but the assignment is incorrect:
{{{
if not typ:
typ=="normal"
}}}

should be:
{{{
if not typ:
typ="normal"
}}}

(In [724]) - assignment operator fix (fixes #39)

--jajcus

Thanks :)

--jajcus