Index: trunk/ippToPsps/jython/batch.py
===================================================================
--- trunk/ippToPsps/jython/batch.py	(revision 32303)
+++ trunk/ippToPsps/jython/batch.py	(revision 32304)
@@ -392,5 +392,5 @@
     Accepts a regular expression filter so not all tables need to be imported
     '''
-    def importIppTables(self, filter=""):
+    def importIppTables(self, columns="*", filter=""):
 
       self.logger.infoPair("Importing tables with filter", filter)
@@ -410,4 +410,5 @@
           # IPP FITS files are littered with infinities, so remove these
           self.logger.debug("Removing Infinity values from all columns")
+          table = stilts.tpipe(table, cmd='keepcols "' + columns + '"')
           table = stilts.tpipe(table, cmd='replaceval -Infinity null *')
           table = stilts.tpipe(table, cmd='replaceval Infinity null *')
