give b64encode the bytes it wants

workspace
Brendan Howell 6 years ago
parent e5cdec6073
commit 0105c16c2d

@ -273,7 +273,7 @@ class Publications(Bureau):
entry.source = feed.feed.title
entry.dbhash = self._make_shorturl(entry.link)
entry.svg = code128.svg("PBr." + entry.dbhash)
encoded_svg = b64encode(entry.svg).decode()
encoded_svg = b64encode(bytest(entry.svg, 'utf-8')).decode()
encoded_data = "data:image/svg+xml;charset=utf-8;base64," + encoded_svg
entry.svg = '<img src="%s"/>' % encoded_data

Loading…
Cancel
Save