diff options
author | dencheva <dencheva@stsci.edu> | 2010-05-28 15:52:29 -0400 |
---|---|---|
committer | dencheva <dencheva@stsci.edu> | 2010-05-28 15:52:29 -0400 |
commit | 9a9af9c9fa0e93875a7b59f0c048f28105c65e75 (patch) | |
tree | e7a05fd5e477510117bd65ec89f7e3416e99796b | |
parent | 05439c51eb88fd5f38705bd811466565c60c9894 (diff) | |
download | stwcs_hcf-9a9af9c9fa0e93875a7b59f0c048f28105c65e75.tar.gz |
Changed a warning statement
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/trunk/stwcs@9483 fe389314-cf27-0410-b35b-8c050e845b92
-rw-r--r-- | distortion/mutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distortion/mutil.py b/distortion/mutil.py index 2effade..ba6df8f 100644 --- a/distortion/mutil.py +++ b/distortion/mutil.py @@ -249,7 +249,7 @@ def read_tdd_coeffs(phdr): if phdr.has_key("TDDORDER"): n = int(phdr["TDDORDER"]) else: - print 'TDDORDER kw not present, TDD correction will not be applied.' + print 'TDDORDER kw not present, using default TDD correction' return None a = np.zeros((n+1,), np.float64) |