diff options
| author | Aaron LI <aly@aaronly.me> | 2017-06-28 11:17:37 +0800 | 
|---|---|---|
| committer | Aaron LI <aly@aaronly.me> | 2017-06-28 11:17:37 +0800 | 
| commit | d568200899e06fd7ce9145f9aba4c53696b8bcc1 (patch) | |
| tree | 440aeaccb5f4b54c8675f42643b58a8090cedd92 /astro/ps2d.py | |
| parent | f280557ead935e622589eaff46092159b0e3dc4b (diff) | |
| download | atoolbox-d568200899e06fd7ce9145f9aba4c53696b8bcc1.tar.bz2 | |
astro/ps2d.py: Fix a typo about string format
Diffstat (limited to 'astro/ps2d.py')
| -rwxr-xr-x | astro/ps2d.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/astro/ps2d.py b/astro/ps2d.py index cceb9fc..b6b5cc8 100755 --- a/astro/ps2d.py +++ b/astro/ps2d.py @@ -59,7 +59,7 @@ class PS2D:          logger.info("Initializing PS2D instance ...")          self.cube = cube          self.pixelsize = pixelsize  # [arcmin] -        logger.info("Image pixel size: %.2 [arcmin]" % pixelsize) +        logger.info("Image pixel size: %.2f [arcmin]" % pixelsize)          self.frequencies = np.array(frequencies)  # [MHz]          self.nfreq = len(self.frequencies)          # Central frequency and redshift | 
