Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #28 from scality/bugfix/RELENG-4706-fixup=links
Browse files Browse the repository at this point in the history
RELENG-4706 remove decode on str object
  • Loading branch information
bertranddemiddelaer authored Jul 7, 2021
2 parents 8df2be2 + 24383f0 commit cfc55c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eve/setup/www_dashboards.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def index():
url = '{site_url}/embed/dashboard/{token}' \
'#bordered={bordered}&titled=false'.format(
site_url=site_url,
token=token.decode('utf-8'),
token=token,
bordered='true' if border else 'false')
elif conf['type'] == 'standard':
url = '{site_url}' \
Expand Down

0 comments on commit cfc55c1

Please sign in to comment.