Changeset 787


Ignore:
Timestamp:
04/04/13 16:31:35 (11 years ago)
Author:
ramonb
Message:
  • print import error (if any) details, i.e.: libtorque.so not found
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.4/jobmond/jobmond.py

    r786 r787  
    18971897            from PBSQuery import PBSQuery, PBSError
    18981898
    1899         except ImportError:
    1900 
    1901             print "FATAL ERROR: BATCH_API set to 'pbs' but python module 'pbs_python' is not installed"
     1899        except ImportError, details:
     1900
     1901            print "FATAL ERROR: BATCH_API set to 'pbs' but python module 'pbs_python' cannot be loaded"
     1902            print details
    19021903            sys.exit( 1 )
    19031904
Note: See TracChangeset for help on using the changeset viewer.