Index: trunk/ippToPsps/jython/batch.py
===================================================================
--- trunk/ippToPsps/jython/batch.py	(revision 38990)
+++ trunk/ippToPsps/jython/batch.py	(revision 38995)
@@ -453,5 +453,5 @@
     '''
     def importIppTables(self, columns="*", filter=""):
-        if self.useOhanaMYSQLtoFITS:
+        if self.config.useOhanaMYSQLtoFITS:
             if not self.importIppTablesOhana():
                 self.logger.errorPair("problem running", "importIppTablesOhana")
@@ -480,5 +480,5 @@
             return False
 
-        self.scratchDb.loadFITStoMYSQL(self.fits.getPath(), "none")
+        self.scratchDb.loadFITStoMYSQL(self.fits.getPath())
 
         ## may need to do this with direct sql:
@@ -515,7 +515,7 @@
     def importIppTablesStilts(self, columns="*", filter=""):
         
-        self.logger.infoPair("Importing tables with filter", filter)
+        self.logger.infoPair("Importing tables (stilts) with filter", filter)
         
-        # print "trying to read ", self.fits.getPath()
+        print "trying to read ", self.fits.getPath()
 
         try:
@@ -527,16 +527,18 @@
         self.tablesLoaded = []
 
+        print "read tables from ", self.fits.getPath()
+
         count = 0
         for table in tables:
 
             # example of listing all columns in a table:
-            ## print "-----table: " + table.name
-            ## columns = table.columns()
-            ## for column in columns:
-            ##     print column
-            ## 
-            ## print "-----"
-
-            # print "import smf table ", table
+            print "-----table: " + table.name
+            myColumns = table.columns()
+            for column in myColumns:
+                print column
+            print "-----"
+
+            print "import smf table ", table.name
+
             match = re.match(filter, table.name)
             if not match: continue
@@ -555,7 +557,9 @@
             self.logger.debug("Removing Infinity values from all columns")
             table = stilts.tpipe(table, cmd='keepcols "' + columns + '"')
+            print "-----"
             table = stilts.tpipe(table, cmd='replaceval -Infinity null *')
+            print "-----"
             table = stilts.tpipe(table, cmd='replaceval Infinity null *')
-            # print "cleaned up values ", table
+            print "cleaned up values ", table.name
 
             try:
