We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1128e00 commit 9b8a0aaCopy full SHA for 9b8a0aa
plotly/plotly/plotly.py
@@ -1488,9 +1488,10 @@ def get_grid(grid_url, raw=False):
1488
# check if request is ok
1489
if not r_meta.ok:
1490
raise exceptions.PlotlyError(
1491
- "Whoops, you got a 404 response. Your grid url {} may be "
+ "Whoops, you got a 404 response. {} may be "
1492
"pointing to a plot rather than a grid. If it is a grid, make "
1493
- "sure your grid is 'public' and not 'private' or 'secret'."
+ "sure your grid is 'public' and not 'private' or "
1494
+ "'secret'.".format(grid_url)
1495
)
1496
1497
json_res_meta = json.loads(r_meta.text)
0 commit comments