IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38987 for trunk


Ignore:
Timestamp:
Oct 27, 2015, 5:12:29 PM (11 years ago)
Author:
watersc1
Message:

Fix my typo of = instead of == in queue.py. Change count++ to count += 1 in batch.py because I guess python doesn't do ++? Comment out my change of queue_FG in ipptopspsdb.py because it breaks something when I attempt to run the test suite.

Location:
trunk/ippToPsps/jython
Files:
3 edited

Legend:

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

    r38981 r38987  
    484484
    485485            self.tablesLoaded.append(table.name)
    486             count ++
     486            count += 1
    487487
    488488        self.logger.infoPair("Done. Imported", "%d tables" % count)
  • trunk/ippToPsps/jython/ipptopspsdb.py

    r38969 r38987  
    11041104        ,queue_FW \
    11051105        ,queue_FO \
    1106         ,queue_FG \
    11071106        ,parallel \
    11081107        ,P2_smf_version \
     
    11121111        FROM skychunk \
    11131112        WHERE name = '" + self.skychunk.name + "'"
    1114 
     1113#        ,queue_FG \
    11151114        self.skychunk.batchTypes = []
    11161115
  • trunk/ippToPsps/jython/queue.py

    r38969 r38987  
    7373
    7474                # for object-like batches, info comes from dvo
    75                 if (batchType == "OB" or batchType =="DO" or batchType =="FO" or batchType = "FG"):
     75                if (batchType == "OB" or batchType =="DO" or batchType =="FO" or batchType == "FG"):
    7676                    self.dvoObjects.setSkyArea(
    7777                            self.skychunk.minRa,
Note: See TracChangeset for help on using the changeset viewer.