We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 90fae7d + 1370618 commit 66a4381Copy full SHA for 66a4381
1 file changed
client/deis.py
@@ -74,6 +74,11 @@
74
from termcolor import colored
75
import urllib3.contrib.pyopenssl
76
77
+# Don't throw IOError when a pipe closes
78
+# https://github.com/deis/deis/issues/3764
79
+from signal import signal, SIGPIPE, SIG_DFL
80
+signal(SIGPIPE, SIG_DFL)
81
+
82
__version__ = '1.7.0-dev'
83
84
# what version of the API is this client compatible with?
0 commit comments