Index: trunk/ippToPsps/jython/batch.py
===================================================================
--- trunk/ippToPsps/jython/batch.py	(revision 38602)
+++ trunk/ippToPsps/jython/batch.py	(revision 38837)
@@ -234,13 +234,13 @@
 
     '''
-    Returns the string keyword value from this header or else "NULL"
+    Returns the float keyword value from this header or else "NULL"
     '''
     def getKeyFloat(self, header, format, key):
 
          if key in header: 
-             value = format % float(header[key])
+             value = float(format % float(header[key]))
          else:
              self.logger.errorPair("Missing header field", key)
-             value = format % -999.9
+             value = float(format % -999.9)
 
          return value
@@ -414,13 +414,12 @@
     '''   
     def createEmptyPspsTables(self):
-         print "THIS SUCKS" 
-         self.pspsTables = stilts.treads(self.pspsVoTableFilePath)
-         for table in self.pspsTables:
-             self.logger.debug("Creating PSPS table: " + table.name)
-             self.logger.infoPair("creating psps table ",table.name)
-             table.write(self.scratchDb.url + '#' + table.name)
-             self.tablesToExport.append(table.name)
-
-         return True
+        self.pspsTables = stilts.treads(self.pspsVoTableFilePath)
+        for table in self.pspsTables:
+            self.logger.debug("Creating PSPS table: " + table.name)
+            self.logger.infoPair("creating psps table ",table.name)
+            table.write(self.scratchDb.url + '#' + table.name)
+            self.tablesToExport.append(table.name)
+
+        return True
 
     '''
