Hi
I belive this was discussed by Norman in this group only. below for
pyicqt...same will work for pymsnt...
PyICQt 0.8 may not work under windows
to resolve this problem comment (cut) this block in main.py:
# Find the best reactor
reactorchoices = ["epollreactor", "kqreactor", "cfreactor",
"pollreactor", "selectreactor", "posixbase", "default"]
for choice in reactorchoices:
try:
exec("from twisted.internet import %s as bestreactor" %
choice)
if choice in ["selectreactor","default"]:
print selectWarning
break
except:
pass
try:
bestreactor.install()
except:
print "Unable to find a reactor.\nExiting..."
sys.exit(1)
Link:
http://www.ejabberd.im/pyicqt
Vishal