absorb some more errors caused by broken shell pipes

This commit is contained in:
Philip Eisenlohr 2016-12-25 12:41:06 -05:00
parent 49eb7aa1be
commit 80191c10c0
1 changed files with 4 additions and 1 deletions

View File

@ -547,7 +547,10 @@ class ASCIItable():
except:
output = [fmt % row] if fmt else [repr(row)]
self.__IO__['out'].write(delimiter.join(output) + '\n')
try:
self.__IO__['out'].write(delimiter.join(output) + '\n')
except:
pass
# ------------------------------------------------------------------
def data_append(self,