summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-07-13 11:21:16 +0800
committerAaron LI <aaronly.me@outlook.com>2016-07-13 11:21:16 +0800
commit2cc3f727b9dab5c5982d744dc40a85b359be2934 (patch)
tree66460ab03d261410e87e6d035188680496cf1888
parentf03888f43d71835b3d2dc91073307ba267d5e2b9 (diff)
downloadcexcess-2cc3f727b9dab5c5982d744dc40a85b359be2934.tar.bz2
info.py: fix get_nh()
-rw-r--r--info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/info.py b/info.py
index 1c4454e..b58edb7 100644
--- a/info.py
+++ b/info.py
@@ -127,5 +127,5 @@ def get_nh(info):
if get_owner(info) == "LWT":
nh = float(info["nH (10^22 cm^-2)"])
else:
- nh = float(info["nH"])
+ nh = float(info["nh"])
return nh