Changeset 5932
- Timestamp:
- 12/05/07 15:18:36 (5 years ago)
- Files:
-
- 1 modified
-
tools/alf/branches/alf-0.6.2/alf/ALF.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tools/alf/branches/alf-0.6.2/alf/ALF.py
r5790 r5932 1 1 #! /bin/env python 2 2 import wx 3 import sys 3 4 from wx.lib import ogl 4 5 from WaveDev.wavedev import ComponentClass as CC 5 6 from WaveDev.wavedev import WaveformClass 6 from omniORB import CORBA, PortableServer 7 try: 8 from omniORB import CORBA, PortableServer 9 except: 10 print "ERROR: ALF.py cannot import the omniORB module" 11 print " - Is omniORBpy installed?" 12 print " - Is /usr/local/lib/pythonX.X/site-packages included in ossie.pth?" 13 sys.exit(0) 14 7 15 import CosNaming 8 16 from ossie.cf import CF, CF__POA 9 17 from ossie.custominterfaces import customInterfaces 10 18 from ossie.standardinterfaces import standardInterfaces 11 import sys12 19 import importWaveform 13 20 import WaveDev.wavedev.importResource as importResource … … 436 443 return 437 444 438 appSeq = self.domMgr._get_applications() 445 try: 446 appSeq = self.domMgr._get_applications() 447 except: 448 print "ERROR: ALF.py cannot get a list of applications from domain manager" 449 print " - is nodeBooter running?" 450 sys.exit(0) 451 439 452 members = dom_context.list(1000) 440 453 for m in members[0]: