Skip to content

Commit

Permalink
Bugfix for webview in report_plot.
Browse files Browse the repository at this point in the history
  • Loading branch information
thocevar committed Jul 23, 2018
1 parent b88b67d commit 6b919a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/widgets/report/report.py
Expand Up @@ -184,7 +184,7 @@ def report_plot(self, name=None, plot=None):
elif isinstance(plot, WebviewWidget):
try:
svg = plot.svg()
except IndexError:
except (IndexError, ValueError):
svg = plot.html()
self.report_html += svg

Expand Down

0 comments on commit 6b919a2

Please sign in to comment.