diff -ruN pyicq-t-0.8/src/main.py pyicq-t-0.8-fixed/src/main.py --- pyicq-t-0.8/src/main.py 2006-09-30 21:44:21.000000000 +0200 +++ pyicq-t-0.8-fixed/src/main.py 2007-04-28 14:37:15.000000000 +0200 @@ -89,7 +89,10 @@ import signal signal.signal(signal.SIGHUP, reloadConfig) # Load scripts for PID and daemonizing - from twisted.scripts import twistd + try: + from twisted.scripts import _twistd_unix as twistd + except: + from twisted.scripts import twistd selectWarning = "Unable to install any good reactors (kqueue, cf, 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. You may silence this message by choosing 'select' or 'default' as your reactor in the transport config." if config.reactor and len(config.reactor) > 0: