Skip to content

Commit

Permalink
SQUASHME: Add another missing comma...
Browse files Browse the repository at this point in the history
  • Loading branch information
Hsin-Fang Chiang committed Sep 1, 2016
1 parent 16c952d commit b969efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/meas/algorithms/installGaussianPsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def run(self, exposure):
if psfSigma <= 0:
raise RuntimeError("psfSigma = %s <= 0" % (psfSigma,))

self.log.debug("installing a simple Gaussian PSF model with width=%s, height=%s, FWHM=%0.3f"
self.log.debug("installing a simple Gaussian PSF model with width=%s, height=%s, FWHM=%0.3f",
width, height, psfSigma*FwhmPerSigma)
psfModel = SingleGaussianPsf(width, height, psfSigma)
exposure.setPsf(psfModel)

0 comments on commit b969efb

Please sign in to comment.