Skip to content

Commit

Permalink
Merge pull request #53 from joezuntz/camb-error-fix-2
Browse files Browse the repository at this point in the history
Stop a NameError in camb when reporting another error
  • Loading branch information
joezuntz authored Feb 3, 2023
2 parents 45db321 + 41c0d43 commit 093b0a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boltzmann/camb/camb_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ def sigma8_to_As(block, config, more_config, cosmology_params, dark_energy, reio

def execute(block, config):
config, more_config = config

p = "<Error occurred during parameter setup>"
try:
p = extract_camb_params(block, config, more_config)

Expand Down

0 comments on commit 093b0a3

Please sign in to comment.