IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32208


Ignore:
Timestamp:
Aug 29, 2011, 9:27:54 AM (15 years ago)
Author:
rhenders
Message:

now saving missing stage_ids to a text file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/jython/metrics.py

    r32112 r32208  
    9292    #os.remove(tempFilename)
    9393
     94    unprocessedIDs = list(set(allIDs) - set(datastoreIDs))
     95    if len(unprocessedIDs) > 0:
     96        UNPROCESSEDFILE = open("unprocessed" + DVOLABEL + "_" + batchType,'w')
     97        for id in unprocessedIDs: print >> UNPROCESSEDFILE, id
     98        UNPROCESSEDFILE.close()
     99
    94100'''
    95101Start of program.
Note: See TracChangeset for help on using the changeset viewer.