Skip to content

Commit 175fc73

Browse files
janezdastaric
authored andcommitted
Merge pull request #1945 from astaric/work-around-none
ErrorReporting: Escape string representation of value (cherry picked from commit 3c89ce8)
1 parent 5606d6b commit 175fc73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/canvas/application/errorreporting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def _reload_text():
100100
for k, v in data.items():
101101
if k.startswith('_'):
102102
continue
103-
_v, v = v, escape(v)
103+
_v, v = v, escape(str(v))
104104
if k == F.WIDGET_SCHEME:
105105
if not add_scheme:
106106
continue

0 commit comments

Comments
 (0)