Skip to content

Commit f76eb17

Browse files
committed
Fix that test.
1 parent c1b4d09 commit f76eb17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/plotly/plotly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def get_figure(file_owner_or_url, file_id=None, raw=False):
369369
verify=get_config()['plotly_ssl_verification'])
370370
if response.status_code == 200:
371371
if six.PY3:
372-
content = json.loads(response.content.decode('unicode_escape'))
372+
content = json.loads(response.content.decode('utf-8'))
373373
else:
374374
content = json.loads(response.content)
375375
response_payload = content['payload']

0 commit comments

Comments
 (0)