diff --git a/spyder/plugins/ipythonconsole/widgets/client.py b/spyder/plugins/ipythonconsole/widgets/client.py index 2c6ac04568f..3cf56633dbd 100644 --- a/spyder/plugins/ipythonconsole/widgets/client.py +++ b/spyder/plugins/ipythonconsole/widgets/client.py @@ -533,6 +533,9 @@ def is_benign_error(self, error): # dependency of IPykernel. # See spyder-ide/spyder#21900 "debugpy_stream undefined, debugging will not be enabled", + # Harmless warning from OpenCL on Windows. + # See spyder-ide/spyder#22551 + "The system cannot find the path specified", ] return any([err in error for err in benign_errors])