Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Use python error catching feature:

for i in events:
   try:
      psspy.comandxx()     #potentially could cause a crash
   except:
      print 'error message'
      continue             # next event
   #....do something if no error occurred: