diff options
author | lim <lim@stsci.edu> | 2012-05-31 14:53:10 -0400 |
---|---|---|
committer | lim <lim@stsci.edu> | 2012-05-31 14:53:10 -0400 |
commit | 16ef49875672596443ba2c8f390e2f9753add1e5 (patch) | |
tree | e2792f7c62fa58567239d06feec9b3d3f53a25a6 /lib/great_circle_arc.py | |
parent | 3e2fe4de6714b51045e4d2334a8739b13102e567 (diff) | |
download | stsci.sphere-16ef49875672596443ba2c8f390e2f9753add1e5.tar.gz |
lim replaced relative imports and updated skyline
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci_python/branches/sphere@17091 fe389314-cf27-0410-b35b-8c050e845b92
Former-commit-id: 7238698a4856c8b46a93aafb4960c90e3f44fe92
Diffstat (limited to 'lib/great_circle_arc.py')
-rw-r--r-- | lib/great_circle_arc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/great_circle_arc.py b/lib/great_circle_arc.py index 0fff174..056857d 100644 --- a/lib/great_circle_arc.py +++ b/lib/great_circle_arc.py @@ -48,8 +48,7 @@ import numpy as np try: - #from . import math_util - import math_util + from sphere import math_util HAS_C_UFUNCS = True except ImportError: HAS_C_UFUNCS = False |