remove stderr check from _cat_proc_file #347
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ class RemoteProcess:
|
|||
)
|
||||
if "No such file or directory" in terminal.stderr:
|
||||
return None
|
||||
elif terminal.stderr or terminal.return_code != 0:
|
||||
elif terminal.return_code != 0:
|
||||
raise AssertionError(f"cat process {file} was not successful: {terminal.stderr}")
|
||||
|
||||
return terminal.stdout
|
||||
|
|
Loading…
Add table
Reference in a new issue