Skip to content

Commit

Permalink
Fix SVG
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Mar 23, 2016
1 parent f0d7391 commit f95cccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_svg.py
Expand Up @@ -393,7 +393,7 @@ def _write_hatches(self):
style=generate_css({
'fill': rgb2hex(stroke),
'stroke': rgb2hex(stroke),
'stroke-width': rcParams['hatch.linewidth'],
'stroke-width': six.text_type(rcParams['hatch.linewidth']),
'stroke-linecap': 'butt',
'stroke-linejoin': 'miter'
})
Expand Down

0 comments on commit f95cccd

Please sign in to comment.