Skip to content

Commit

Permalink
Add quotes to missing bokeh installation commands (#8717)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored Jun 24, 2024
1 parent adcb045 commit e83246e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distributed/http/scheduler/missing_bokeh.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ class MissingBokeh(RequestHandler):
def get(self):
self.write(
f"<p>Dask needs {BOKEH_REQUIREMENT} for the dashboard.</p>"
f"<p>Install with conda: <code>conda install {BOKEH_REQUIREMENT}</code></p>"
f"<p>Install with pip: <code>pip install {BOKEH_REQUIREMENT}</code></p>"
f'<p>Install with conda: <code>conda install "{BOKEH_REQUIREMENT}"</code></p>'
f'<p>Install with pip: <code>pip install "{BOKEH_REQUIREMENT}"</code></p>'
)


Expand Down

0 comments on commit e83246e

Please sign in to comment.