Index: trunk/ippToPsps/jython/gpc1db.py
===================================================================
--- trunk/ippToPsps/jython/gpc1db.py	(revision 38358)
+++ trunk/ippToPsps/jython/gpc1db.py	(revision 38891)
@@ -285,8 +285,5 @@
               AND stage_id = " + str(stageID)
 
-        try:
-            rs = self.executeQuery(sql)
-        except:
-            self.logger.exception("Can't query for addIDs using :" + sql )
+        rs = self.executeQuery(sql)
 
         addIDs = []
@@ -306,5 +303,5 @@
     def getListOfDiffSkyFileIdsForDiffBatch(self, dvoDb, stageID):
 
-        self.logger.debug("Querying GPC1 for add IDs for ff_id: " + str(stageID))
+        self.logger.debug("Querying GPC1 for add IDs for diff_id: " + str(stageID))
         stage = "diff"
         sql = "SELECT diff_skyfile_id \
@@ -490,4 +487,5 @@
               join fullForceResult using (ff_id, warp_id) \
               where add_id = %d" % forcedWarpID
+
         try:
             rs = self.executeQuery(sql)
@@ -506,10 +504,11 @@
         files = []
         if pathBase.startswith("neb"):
-        
             f=os.popen("neb-ls -p " + pathBase + ".cmf")
             for i in f.readlines():
-        
                 files.append(i.rstrip())
-        
+
+        else:
+            files = glob.glob(pathBase + ".cmf")
+
         
         if len(files) < 1: return None
