IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 15, 2016, 2:16:07 PM (10 years ago)
Author:
heather
Message:

old changes from Gene for ForcedWarp related problems as well as fixes to FW batches - these are non-empty FW for SAS42

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/jython/sqlUtility.py

    r39072 r39467  
    5555
    5656        for i in range(len(self.values)):
    57             output += "'" + self.values[i] + "'"
     57            if self.values[i] == "NULL":
     58                output += "NULL"
     59            else:
     60                output += "'" + self.values[i] + "'"
    5861            if (i < len(self.values) - 1):
    5962                output += ", "
Note: See TracChangeset for help on using the changeset viewer.