diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:40:13 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:40:13 +0000 |
commit | 05f6fb34ee79ee8112ef549e93f0a138be0e2abf (patch) | |
tree | 6ba01d84d85f00b380477077d920c341c3570b09 /hplip-silence-ioerror.patch | |
parent | 9e5a3ab8358d9d01de9ddf82042f5f1a42cfb841 (diff) |
automatic import of hplipopeneuler24.03_LTS
Diffstat (limited to 'hplip-silence-ioerror.patch')
-rw-r--r-- | hplip-silence-ioerror.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hplip-silence-ioerror.patch b/hplip-silence-ioerror.patch new file mode 100644 index 0000000..013931b --- /dev/null +++ b/hplip-silence-ioerror.patch @@ -0,0 +1,12 @@ +diff -up hplip-3.15.2/base/logger.py.silence-ioerror hplip-3.15.2/base/logger.py +--- hplip-3.15.2/base/logger.py.silence-ioerror 2015-03-16 16:48:12.750337907 +0000 ++++ hplip-3.15.2/base/logger.py 2015-03-16 16:48:34.850253564 +0000 +@@ -199,6 +199,8 @@ class Logger(object): + out.write('\n') + + out.flush() ++ except IOError: ++ pass + finally: + self._lock.release() + |