diff --git a/pysynphot/spectrum.py b/pysynphot/spectrum.py index d94a7c25..7f6edf12 100644 --- a/pysynphot/spectrum.py +++ b/pysynphot/spectrum.py @@ -675,7 +675,7 @@ def redshift(self, z): fluxunits = self.fluxunits self.convert('angstrom') self.convert('photlam') - newwave = self.wave*(1.0+z) + newwave = self.wave.astype(N.float64) * (1.0 + z) copy = ArraySourceSpectrum(wave=newwave, flux=self.flux, waveunits=self.waveunits,