Merge pull request #1821 from pijyoi/case_sensitive_exception

This commit is contained in:
Ogi Moore 2021-06-08 05:39:35 -07:00 committed by GitHub
commit 823988d51c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -205,8 +205,8 @@ except:
process.stderr.close()
if (fail or
'exception' in stderr.lower() or
'error' in stderr.lower()):
'Exception:' in stderr or
'Error:' in stderr):
if (not fail
and name == "RemoteGraphicsView"
and "pyqtgraph.multiprocess.remoteproxy.ClosedError" in stderr):