Index: neutron.py
===================================================================
--- neutron.py (revision 143)
+++ neutron.py (working copy)
@@ -400,7 +400,9 @@
def messageCB(con, msg):
msgtype = msg.getType()
- body = msg.getBody().strip()
+ body = msg.getBody()
+ if body != None:
+ body = body.strip()
fromjid = msg.getFrom()
command = ''
parameters = ''
Thanks, fix committed to
Thanks, fix committed to Neutron trunk SVN.