From a3da6639314fa8bff2368fd37d99e866d9f2a4d0 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Fri, 22 Apr 2016 17:59:50 +0200 Subject: [PATCH] piping was broken --- processing/post/vtk_rectilinearGrid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processing/post/vtk_rectilinearGrid.py b/processing/post/vtk_rectilinearGrid.py index ad1f57c1d..1d74cfd67 100755 --- a/processing/post/vtk_rectilinearGrid.py +++ b/processing/post/vtk_rectilinearGrid.py @@ -38,7 +38,7 @@ parser.set_defaults(coords = 'pos', if filenames == []: filenames = [None] for name in filenames: - isGeom = name.endswith('.geom') + isGeom = name is not None and name.endswith('.geom') try: table = damask.ASCIItable(name = name, buffered = False, labeled = not isGeom,