Skip to content

Commit

Permalink
Merge pull request #545 from lsst/tickets/DM-30921-hotfix
Browse files Browse the repository at this point in the history
DM-30921 Hotfix: Fix call to getWcs()
  • Loading branch information
erykoff committed Jul 1, 2021
2 parents 1f04de6 + cb7229a commit c411b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/tasks/makeCoaddTempExp.py
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ def prepareCalibratedExposures(self, calExpList, backgroundList=None, skyCorrLis
continue
calexp.setWcs(skyWcs)
else:
skyWcs = calexp.getSkyWcs()
skyWcs = calexp.getWcs()
if skyWcs is None:
self.log.warn("Detector id %s has None for skyWcs in the calexp "
"and will not be used in the warp.", detectorId)
Expand Down

0 comments on commit c411b24

Please sign in to comment.