mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 06:52:56 +00:00
Ignore stderr in CondaPackageHelper::_execute_command
This commit is contained in:
@@ -90,7 +90,7 @@ class CondaPackageHelper:
|
||||
|
||||
def _execute_command(self, command: list[str]) -> str:
|
||||
"""Execute a command on a running container"""
|
||||
rc = self.running_container.exec_run(command)
|
||||
rc = self.running_container.exec_run(command, stderr=False)
|
||||
return rc.output.decode("utf-8") # type: ignore
|
||||
|
||||
@staticmethod
|
||||
|
Reference in New Issue
Block a user