Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz committed Nov 29, 2018
1 parent dab17a1 commit 6ff2b80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/report.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion reacnetgenerator/_reachtml.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def _generatesvg(self):
r"""<rect("[^"]*"|'[^']*'|[^'">])*>""", '', svgdata)
svgdata = re.sub(
r"""<\?xml("[^"]*"|'[^']*'|[^'">])*>""", '', svgdata)
svgdata = re.sub(r"""<title>*<\/title>""", '', svgdata)
svgdata = re.sub(r"""<title>.*?<\/title>""", '', svgdata)
buff.append(_html['speciessvg-each'] % (spec, svgdata))
buff.append(_html['speciessvg-bottom'])
self._result.extend(buff)
Expand Down

0 comments on commit 6ff2b80

Please sign in to comment.