Skip to content

Commit 6b919a2

Browse files
committed
Bugfix for webview in report_plot.
1 parent b88b67d commit 6b919a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/report/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def report_plot(self, name=None, plot=None):
184184
elif isinstance(plot, WebviewWidget):
185185
try:
186186
svg = plot.svg()
187-
except IndexError:
187+
except (IndexError, ValueError):
188188
svg = plot.html()
189189
self.report_html += svg
190190

0 commit comments

Comments
 (0)