Skip to content
Snippets Groups Projects
Commit a56c0ef0 authored by MoritzThomasHuebner's avatar MoritzThomasHuebner
Browse files

Catches SystemExit in case Pymultinest is not installed

parent 35d9af2b
No related branches found
No related tags found
1 merge request!230Resolve "PEP8 Imports"
......@@ -139,7 +139,7 @@ class Sampler(object):
external_sampler_name = self.__class__.__name__.lower()
try:
self.external_sampler = __import__(external_sampler_name)
except ImportError:
except (ImportError, SystemExit):
raise ImportError(
"Sampler {} not installed on this system".format(external_sampler_name))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment