]> code.delx.au - pymsnt/blobdiff - src/main.py
Hopefully fixed weird exception errors.
[pymsnt] / src / main.py
index 902ef7927619f9bb54a21c71b18075517008d8a7..4b4d906022860449743b86ee76ba46884a9418f9 100644 (file)
@@ -7,7 +7,7 @@ sys.setdefaultencoding("utf-8")
 sys.stdout = codecs.lookup('utf-8')[-1](sys.stdout)
 
 # Find the best reactor
-selectWarning = "Unable to install any good reactors (kqueue, epoll, poll).\nWe fell back to using select. You may have scalability problems.\nThis reactor will not support more than 1024 connections +at a time."
+selectWarning = "Unable to install any good reactors (kqueue, epoll, poll).\nWe fell back to using select. You may have scalability problems.\nThis reactor will not support more than 1024 connections at a time."
 try:
        from twisted.internet import epollreactor as bestreactor
 except: