We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5553f4 commit e7fb7a5Copy full SHA for e7fb7a5
EOS/tillotson/_parameters
@@ -1,4 +1,4 @@
1
- @namespace: eos
+@namespace: eos
2
3
eos_la real 0.5
4
sphinx_docs/rp.py
@@ -46,6 +46,8 @@ def pretty_category(path):
46
return f"CONDUCTIVITY_DIR={subdir}"
47
if path.startswith("integration/"):
48
return f"INTEGRATOR_DIR={subdir}"
49
+ if path.startswith("opacity/"):
50
+ return f"OPACITY_DIR={subdir}"
51
return path
52
53
@@ -65,9 +67,9 @@ def make_rest_table(param_files):
65
67
66
68
# open the file
69
try:
- f = open(pf, "r")
- except IOError:
70
- sys.exit("ERROR: {} does not exist".format(pf))
+ f = open(pf)
71
+ except OSError:
72
+ sys.exit(f"ERROR: {pf} does not exist")
73
74
descr = r""
75
0 commit comments