Skip to content

Commit

Permalink
fixed import error try statement
Browse files Browse the repository at this point in the history
  • Loading branch information
prmiles committed Jul 11, 2018
1 parent d5a74eb commit d7298d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymcmcstat/plotting/MCMCPlotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
try:
from statsmodels.nonparametric.kernel_density import KDEMultivariate
except ImportError as e:
warnings.warn("Exception raised importing statsmodels.nonparametric.kernel_density - plot_density_panel will not work.)", ImportWarning)
warnings.warn(str("Exception raised importing statsmodels.nonparametric.kernel_density - plot_density_panel will not work. {}".format(e)))

# --------------------------------------------
def plot_density_panel(chains, names = None, hist_on = False, figsizeinches = None):
Expand Down

0 comments on commit d7298d9

Please sign in to comment.