Changeset 32120 for trunk/ippToPsps
- Timestamp:
- Aug 17, 2011, 12:39:08 PM (15 years ago)
- Location:
- trunk/ippToPsps/jython
- Files:
-
- 2 edited
-
datastore.py (modified) (2 diffs)
-
odm.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/jython/datastore.py
r32058 r32120 6 6 import sys 7 7 from xml.etree.ElementTree import ElementTree, Element, tostring 8 9 8 10 9 ''' … … 94 93 for i in range(firstInt, lastInt): 95 94 96 self.remove("B%08d" % i) 95 self.remove(Batch.getNameFromID(i)) 96 97 from batch import Batch -
trunk/ippToPsps/jython/odm.py
r32114 r32120 6 6 from xml.etree.ElementTree import ElementTree, Element, tostring 7 7 from subprocess import call, PIPE, Popen 8 9 from batch import Batch 8 10 9 11 ''' … … 25 27 def checkBatch(self, batchID, results): 26 28 27 batch = "B%08d" % batchID29 batch = Batch.getNameFromID(batchID) 28 30 29 31 tempFile = tempfile.NamedTemporaryFile(mode='w+b')
Note:
See TracChangeset
for help on using the changeset viewer.
