File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 18
18
try :
19
19
from .run import run
20
20
except ImportError as e :
21
- print (e )
22
- print ('WARNING: no running available -- check library and error above' )
23
- print ('Only MultiNest analysing capabilities enabled.' )
21
+ print ('WARNING: Only MultiNest analysing capabilities enabled, no running.' )
22
+ print ('WARNING: check installed packages (import failed with: "%s")' % e )
24
23
from .analyse import Analyzer
25
24
try :
26
25
from .watch import ProgressWatcher , ProgressPrinter , ProgressPlotter
27
26
from .plot import PlotMarginal , PlotMarginalModes
28
27
except ImportError as e :
29
- print (e )
30
- print ('WARNING: no plotting available -- check matplotlib installation and error above' )
31
- print ('Only MultiNest run capabilities enabled.' )
28
+ print ('WARNING: Only MultiNest run capabilities enabled, no plotting available' )
29
+ print ('WARNING: check matplotlib installation (import failed with "%s")' % e )
32
30
You can’t perform that action at this time.
0 commit comments