-
-
Notifications
You must be signed in to change notification settings - Fork 15.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixos/jupyter: Fix documentation example for jupyter.kernels
#56415
Conversation
The environment variable loading fails when using the example for `kernels` config, due to incorrect syntax. The error being something along the lines of `path not found`.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The variables need to be escaped correctly. This is an example, so we don't want it to actually evaluate them.
If I am correct, it's indeed removing the spaces like you did, and replacing the single $ with $$. |
Fixes and closes NixOS#56415 Thanks at @BenSchZA for reporting.
@BenSchZA Triage ping. Are you still interested in updating and getting this merged ? |
@layus Thanks for checking in. I've just seen the updates you made. Happy to update and get this merged. |
Thanks to @infinisil and @layus for suggestions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@FRidh I think this is ready
…#56415) * Fix documentation example for `jupyter.kernels` The environment variable loading fails when using the example for `kernels` config, due to incorrect syntax. The error being something along the lines of `path not found`. Thanks to @infinisil and @layus for suggestions.
…#56415) * Fix documentation example for `jupyter.kernels` The environment variable loading fails when using the example for `kernels` config, due to incorrect syntax. The error being something along the lines of `path not found`. Thanks to @infinisil and @layus for suggestions.
Motivation for this change
The environment variable loading fails when using the example for
kernels
config, due to incorrect syntax. The error being something along the lines ofpath not found
. The same is true for the loading of the relevant icons from path.This change is a simple update of the service documentation.
Things done