Skip to content

Commit

Permalink
[FIX] link_tracker: python3 can't concat bytes to str
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeodoo authored and JKE-be committed Oct 12, 2017
1 parent a91a3a5 commit 47b376e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/link_tracker/models/link_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def _compute_code(self):
@api.one
@api.depends('favicon')
def _compute_icon_src(self):
self.icon_src = b'data:image/png;base64,' + self.favicon
self.icon_src = 'data:image/png;base64,' + self.favicon

@api.one
@api.depends('url')
Expand Down

0 comments on commit 47b376e

Please sign in to comment.