On Sunday, March 3, 2013 at 3:44 AM, Sayid Munawar wrote:
Hi,in package setup.py of fred-whois-2.8.4, line 73:def check_CORBA(self):try:from omniORB import CORBAimport omniidlexcept ImportError, msg:sys.stderr.write('ImportError: %s\nWhois needs omniORB and omniidl module. For more see README.\n' % msg)sys.exit(1)from what i've inspected in the source code, there is no file which "import omniidl". this requirement will make installation error although omniidl-python package has been installed (i am using ubuntu precise). So it should be:def check_CORBA(self):try:from omniORB import CORBAexcept ImportError, msg:sys.stderr.write('ImportError: %s\nWhois needs omniORB. For more see README.\n' % msg)sys.exit(1)CMIIW--Sayid MunawarSent with Sparrow