diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-02-20 21:13:01 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-02-20 21:13:01 +0800 |
commit | 770d77da3ce9d91dd5fd2bca548797d67cd79989 (patch) | |
tree | 531609ddedfb944285dd24872307486db121c115 /acispy | |
parent | deed9f233b0f22a4778d547587442d6834a9e53d (diff) | |
download | chandra-acis-analysis-770d77da3ce9d91dd5fd2bca548797d67cd79989.tar.bz2 |
Fix errors in acispy/region.py and scripts/calc_centroid.py
Diffstat (limited to 'acispy')
-rw-r--r-- | acispy/region.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acispy/region.py b/acispy/region.py index 09e42fa..dd98d20 100644 --- a/acispy/region.py +++ b/acispy/region.py @@ -210,7 +210,7 @@ class Regions: def __init__(self, regfile=None): if regfile: - self.regions = self.load(regfile) + self.load(regfile) else: self.regions = [] |