Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f95cccd

Browse files
committed
Fix SVG
1 parent f0d7391 commit f95cccd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/backends/backend_svg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def _write_hatches(self):
393393
style=generate_css({
394394
'fill': rgb2hex(stroke),
395395
'stroke': rgb2hex(stroke),
396-
'stroke-width': rcParams['hatch.linewidth'],
396+
'stroke-width': six.text_type(rcParams['hatch.linewidth']),
397397
'stroke-linecap': 'butt',
398398
'stroke-linejoin': 'miter'
399399
})

0 commit comments

Comments
 (0)