Changeset 327 for trunk/jobmond/jobmond.py
- Timestamp:
- 04/21/07 16:49:12 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jobmond/jobmond.py
r318 r327 624 624 count_mynodes = count_mynodes + 1 625 625 else: 626 count_mynodes = count_mynodes + int( nodepart ) 626 try: 627 count_mynodes = count_mynodes + int( nodepart ) 628 except ValueError, detail: 629 debug_msg( 10, str( detail ) ) 630 debug_msg( 10, "Encountered weird node in Resources_List?!" ) 631 debug_msg( 10, 'nodepart = ' + str( nodepart ) ) 632 debug_msg( 10, 'job = ' + str( name ) ) 633 debug_msg( 10, 'attrs = ' + str( attrs ) ) 627 634 628 635 nodeslist = str( count_mynodes )
Note: See TracChangeset
for help on using the changeset viewer.